-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
64 lines (64 loc) · 1.79 KB
/
tsconfig.json
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"compileOnSave": true,
"compilerOptions": {
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"allowUmdGlobalAccess": false,
"baseUrl": ".",
"module": "ES2022",
"moduleResolution": "Node",
"noResolve": false,
"resolveJsonModule": false,
"declarationDir": "./types",
"declarationMap": true,
"downlevelIteration": true,
"importHelpers": true,
"inlineSourceMap": false,
"inlineSources": false,
"newLine": "lf",
"noEmitOnError": true,
"outDir": "./out",
"rootDir": "./src",
"preserveValueImports": false,
"removeComments": true,
"sourceMap": true,
"stripInternal": true,
"allowJs": false,
"checkJs": false,
"disableSizeLimit": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"preserveSymlinks": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"jsx": "preserve",
"target": "ES2022",
"diagnostics": false,
"extendedDiagnostics": false,
"listEmittedFiles": false,
"listFiles": false,
"traceResolution": false,
"composite": true,
"disableSolutionSearching": false,
"disableSourceOfProjectReferenceRedirect": false,
"noErrorTruncation": true,
"preserveWatchOutput": true,
"pretty": true,
"skipLibCheck": true,
"assumeChangesOnlyAffectDirectDependencies": false
},
"include": ["**/*"],
"watchOptions": {
"excludeDirectories": ["**/node_modules"]
}
}