-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 1 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
{
"files": [],
"references": [{ "path": "packages" }],
"compilerOptions": {
"noErrorTruncation": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": false,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitThis": false,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"removeComments": true,
"preserveConstEnums": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"jsx": "react-jsx",
"lib": ["dom", "ESNext"],
"strict": true,
"esModuleInterop": true,
"typeRoots": ["./node_modules/@types"],
"allowSyntheticDefaultImports": true,
"isolatedModules": true
},
"exclude": ["node_modules", "packages/*/node_modules", "packages/*/tslib"],
"include": ["./global.d.ts"]
}