-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) · 814 Bytes
/
tsconfig.json
File metadata and controls
30 lines (30 loc) · 814 Bytes
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
{
"compilerOptions": {
"baseUrl": "src",
"declaration": true,
"esModuleInterop": true,
"inlineSourceMap": false,
"lib": ["esnext"],
"listEmittedFiles": false,
"listFiles": false,
"noFallthroughCasesInSwitch": true,
"pretty": true,
"rootDir": "src",
"skipLibCheck": true,
"traceResolution": false,
"types": ["node", "jest"],
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true
},
"compileOnSave": false,
"exclude": ["node_modules", "dist", "src/__tests__"],
"include": ["src"],
"ts-node": {
"esm": true,
"swc": true
}
}