-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathtsconfig.ts.json
More file actions
20 lines (20 loc) · 624 Bytes
/
tsconfig.ts.json
File metadata and controls
20 lines (20 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
/*
Override to include just TypeScript files and use stricter settings than we do with JavaScript.
Used by:
- npm run-script typecheck:ts
*/
/* Visit https://aka.ms/tsconfig to read more about tsconfig configuration. */
"extends": "./tsconfig.json",
"compilerOptions": {
/* Full strict is fine for the TypeScript files, so turn back on the checks we turned off for mixed-use. */
"noImplicitAny": true,
"strictNullChecks": true,
"useUnknownInCatchVariables": true,
},
"include": [
/* All TypeScript targets from tsconfig.json include. */
"**/*.ts",
"**/*.mts",
],
}