-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
34 lines (34 loc) · 982 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["ESNext", "DOM"],
"module": "esnext",
"moduleResolution": "node",
"newLine": "lf",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "distribution",
"pretty": true,
"resolveJsonModule": true, // @TODO: set this to false because ESM doesn't support JSON
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"target": "ESNext",
"typeRoots": ["./node_modules/@types"],
"useDefineForClassFields": true,
"useUnknownInCatchVariables": false
},
"exclude": ["distribution", "**/*.test.ts"]
}