Skip to content

Commit

Permalink
chore: using tsc instead tsdx
Browse files Browse the repository at this point in the history
  • Loading branch information
emersonlaurentino committed Jun 17, 2022
1 parent f037bb2 commit 12fe9c1
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/lighthouse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"src"
],
"scripts": {
"develop": "tsdx watch",
"build": "tsdx build",
"develop": "tsc --watch",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"test": "tsdx test --passWithNoTests"
},
Expand Down
5 changes: 4 additions & 1 deletion packages/lighthouse/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "@vtex/tsconfig",
"include": ["src"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "dist"],
"compilerOptions": {
"outDir": "dist"
}
}
4 changes: 2 additions & 2 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"src"
],
"scripts": {
"develop": "tsdx watch",
"build": "tsdx build",
"develop": "tsc --watch",
"build": "tsc",
"lint": "eslint src/**/*.{ts,tsx}",
"test": "tsdx test",
"size": "size-limit",
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"src"
],
"scripts": {
"develop": "tsdx watch",
"build": "tsdx build",
"develop": "tsc --watch",
"build": "tsc",
"lint": "eslint src/**/*.{ts,tsx}",
"test": "tsdx test --passWithNoTests",
"storybook": "start-storybook -p 6006 --no-manager-cache",
Expand Down
18 changes: 14 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8402,10 +8402,20 @@
semver "^7.3.7"
tsutils "^3.21.0"

"@typescript-eslint/parser@^2.12.0", "@typescript-eslint/parser@^4":
version "4.33.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.33.0.tgz#dfe797570d9694e560528d18eecad86c8c744899"
integrity sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA==
"@typescript-eslint/experimental-utils@2.34.0":
version "2.34.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"
integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/typescript-estree" "2.34.0"
eslint-scope "^5.0.0"
eslint-utils "^2.0.0"

"@typescript-eslint/parser@^2.12.0":
version "2.34.0"
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8"
integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==
dependencies:
"@types/eslint-visitor-keys" "^1.0.0"
"@typescript-eslint/experimental-utils" "2.34.0"
Expand Down

0 comments on commit 12fe9c1

Please sign in to comment.