-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 1007 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
{
"compilerOptions": {
"declaration": false,
"noEmit": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "ESNext",
"lib": ["ES2015", "ES2020", "ES2020.Promise", "ES2020.String", "ES2017", "dom"],
"jsx": "react",
"pretty": true,
"sourceMap": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitReturns": true,
"removeComments": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strict": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"baseUrl": ".",
"rootDir": "src",
"typeRoots": ["node_modules/@types"]
},
"exclude": ["node_modules"]
}