-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
31 lines (31 loc) · 876 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
{
"compilerOptions": {
"target": "ES2021",
"lib": ["ES2021"],
"types": ["node"],
"module": "NodeNext",
"declaration": true,
"noImplicitAny": true,
"removeComments": true,
"experimentalDecorators": true,
"outDir": "./build",
"sourceMap": true,
"noEmitOnError": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noEmit": false,
"moduleResolution": "node",
"isolatedModules": true,
"resolveJsonModule": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"ignoreDeprecations": "5.0"
},
"include": ["**/*.ts", "**/*.tsx", "types.d.ts"],
"exclude": ["node_modules", "./build/**/*", "jest.config.ts"]
}