Skip to content

Commit

Permalink
fix(global): remove unnecessary tsconfig properties
Browse files Browse the repository at this point in the history
  • Loading branch information
waldronmatt committed Sep 25, 2023
1 parent a1f44c1 commit 85512bb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 40 deletions.
1 change: 0 additions & 1 deletion apps/vite-project/tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"extends": "./tsconfig.json",
"include": [".*.cjs", "*.cjs", "*.config.ts", "src/*"],
"compilerOptions": {
"noEmit": true,
"allowJs": true
}
}
6 changes: 2 additions & 4 deletions apps/vite-project/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["tsconfig-config/vite.json", "../../tsconfig.base.json"],
"extends": "tsconfig-config/vite.json",
"include": ["src"],
"exclude": ["node_modules", "dist"],
"references": [{ "path": "./tsconfig.node.json" }],
"files": []
"exclude": ["node_modules", "dist"]
}
2 changes: 1 addition & 1 deletion apps/vite-project/tsconfig.node.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["tsconfig-config/vite-node.json", "../../tsconfig.base.json"],
"extends": "tsconfig-config/vite-node.json",
"include": ["vite.config.ts"]
}
13 changes: 2 additions & 11 deletions packages/basic-math/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["tsconfig-config/library.json", "../../tsconfig.base.json"],
"extends": "tsconfig-config/library.json",
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"references": [
{
"path": "./tsconfig.build.json"
},
{
"path": "./tsconfig.eslint.json"
}
],
"files": []
}
}
13 changes: 2 additions & 11 deletions packages/parity/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["tsconfig-config/library.json", "../../tsconfig.base.json"],
"extends": "tsconfig-config/library.json",
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"references": [
{
"path": "./tsconfig.build.json"
},
{
"path": "./tsconfig.eslint.json"
}
],
"files": []
}
}
12 changes: 0 additions & 12 deletions tsconfig.base.json

This file was deleted.

0 comments on commit 85512bb

Please sign in to comment.