-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
39 lines (34 loc) · 863 Bytes
/
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
{
"include": ["src/**/*"],
"compilerOptions": {
// output ES version and module resolutions
"target": "es2015",
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
// jsx function and import source
"jsx": "react-jsx",
// strict mode
"strict": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// decorators
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// emit
"outDir": ".output",
"sourceMap": true,
"declaration": true,
"importHelpers": true,
// misc
"skipLibCheck": true,
"preserveSymlinks": true
},
"typeAcquisition": {
"include": ["jest"]
}
}