-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e80e6e6
commit f427855
Showing
6 changed files
with
30 additions
and
36 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
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,25 +1,9 @@ | ||
{ | ||
// You can see the full details at https://github.com/sindresorhus/tsconfig/blob/main/tsconfig.json | ||
// Note: `strict: true` enables many flags that aren’t explicitly listed in that file | ||
"extends": "@sindresorhus/tsconfig", | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"sourceMap": true, | ||
"module": "esnext", | ||
"target": "es2023", | ||
"moduleResolution": "bundler", | ||
"resolveJsonModule": true, | ||
"baseUrl": ".", | ||
"outDir": null, | ||
"declaration": false, | ||
|
||
// TODO: Drop these lines to make TS stricter https://github.com/pixiebrix/pixiebrix-extension/issues/775 | ||
"strictFunctionTypes": false, | ||
"noPropertyAccessFromIndexSignature": false, | ||
"noImplicitReturns": false, | ||
"noUnusedParameters": false, | ||
"paths": { | ||
"@/*": ["src/*"] | ||
} | ||
}, | ||
"exclude": ["node_modules"] | ||
} | ||
} |
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
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,22 @@ | ||
{ | ||
// You can see the full details at https://github.com/sindresorhus/tsconfig/blob/main/tsconfig.json | ||
// Note: `strict: true` enables many flags that aren’t explicitly listed in that file | ||
"extends": "@sindresorhus/tsconfig", | ||
"compilerOptions": { | ||
"sourceMap": true, | ||
"module": "esnext", | ||
"target": "es2023", | ||
"moduleResolution": "bundler", | ||
"resolveJsonModule": true, | ||
"baseUrl": ".", | ||
"outDir": null, | ||
"declaration": false, | ||
|
||
// TODO: Drop these lines to make TS stricter https://github.com/pixiebrix/pixiebrix-extension/issues/775 | ||
"strictFunctionTypes": false, | ||
"noPropertyAccessFromIndexSignature": false, | ||
"noImplicitReturns": false, | ||
"noUnusedParameters": false | ||
}, | ||
"exclude": ["node_modules"] | ||
} |