-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ Use a shared tsconfig.base.json (#37215)
* Use a shared tsconfig.base.json * Reverse tsconfig dependencies, * Update eslint import resolver * Add third_party in root * Let wg-performance own tsconfig base * Lint fix and remove extra extends * Base can only contain passing paths * Lint fixes
- Loading branch information
Showing
4 changed files
with
37 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,5 @@ | ||
{ | ||
"compilerOptions": { | ||
"allowJs": true, | ||
"checkJs": true, | ||
"noEmit": true, | ||
"downlevelIteration": true, | ||
"target": "esnext", | ||
"moduleResolution": "node", | ||
"strictNullChecks": true, | ||
"noImplicitAny": true, | ||
"lib": ["dom", "esnext", "es6"], | ||
"paths": { | ||
"#core": ["."], | ||
"#core/*": ["./*"] | ||
} | ||
}, | ||
"include": ["**/*.js", "**/*.d.ts"], | ||
"exclude": ["**/*.extern.js"] | ||
"compilerOptions": {"baseUrl": "../.."}, | ||
"extends": "../../tsconfig.base.json", | ||
"include": ["**/*.js", "**/*.d.ts"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"compilerOptions": { | ||
"allowJs": true, | ||
"checkJs": true, | ||
"noEmit": true, | ||
"downlevelIteration": true, | ||
"target": "esnext", | ||
"moduleResolution": "node", | ||
"strictNullChecks": true, | ||
"noImplicitAny": true, | ||
"lib": ["dom", "esnext", "es6"], | ||
|
||
"paths": { | ||
"#compiler": ["./src/compiler"], | ||
"#compiler/*": ["./src/compiler/*"], | ||
"#core/*": ["./src/core/*"] | ||
} | ||
}, | ||
|
||
"exclude": [ | ||
"**/build/**", | ||
"**/dist/**", | ||
"**/dist.*/**", | ||
"**/node_modules/**", | ||
"**/third_party/**", | ||
"**/*.extern.js" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters