Skip to content

Commit 6570ad3

Browse files
committed
Extend base tsconfig.json
1 parent be7fe2b commit 6570ad3

File tree

1 file changed

+1
-22
lines changed

1 file changed

+1
-22
lines changed

pr-checks/tsconfig.json

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,11 @@
11
{
2+
"extends": "../tsconfig.json",
23
"compilerOptions": {
34
/* Basic Options */
45
"lib": ["esnext"],
5-
"target": "ES2022",
6-
"module": "commonjs",
76
"rootDir": "..",
87
"sourceMap": false,
98
"noEmit": true,
10-
11-
/* Strict Type-Checking Options */
12-
"strict": true, /* Enable all strict type-checking options. */
13-
"noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */
14-
"strictNullChecks": true, /* Enable strict null checks. */
15-
"strictFunctionTypes": true, /* Enable strict checking of function types. */
16-
"strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
17-
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
18-
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
19-
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
20-
21-
/* Additional Checks */
22-
"noUnusedLocals": false, /* Report errors on unused locals. */
23-
"noUnusedParameters": false, /* Report errors on unused parameters. */
24-
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
25-
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
26-
27-
/* Module Resolution Options */
28-
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
29-
"resolveJsonModule": true,
309
},
3110
"include": ["./*.ts", "../src/**/*.ts"],
3211
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)