-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
33 lines (33 loc) · 851 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": false,
"esModuleInterop": true,
"importHelpers": true,
// See https://devblogs.microsoft.com/typescript/typescript-and-babel-7/
"isolatedModules": true,
"lib": [
"ESNext",
"DOM"
],
"module": "ESNext",
"moduleResolution": "Node",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveSymlinks": true,
"pretty": true,
"removeComments": true,
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"stripInternal": true,
"target": "ES2022",
"allowJs": false
}
}