-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
41 lines (35 loc) · 965 Bytes
/
tsconfig.base.json
File metadata and controls
41 lines (35 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// "outDir": "dist/",
// "lib": ["es2022"],
// "module": "commonjs",
// "target": "es2022",
// "moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"allowJs": true,
"checkJs": true,
"declaration": true,
"declarationMap": false,
"noImplicitThis": true,
// "removeComments": true,
"forceConsistentCasingInFileNames": true
// "composite": true,
// "sourceMap": false,
// "noUnusedLocals": true,
// "noImplicitReturns": true,
// "allowSyntheticDefaultImports": true,
// "emitDecoratorMetadata": true,
// "experimentalDecorators": true,
// "downlevelIteration": false,
// "importHelpers": true,
// "inlineSources": false,
// "isolatedModules": true,
// "resolveJsonModule": true,
// "preserveWatchOutput": true
},
"include": ["src/**/*", "tests/**/*"]
}