-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (31 loc) · 936 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
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"incremental": true,
"importHelpers": true,
"lib": ["es2017", "dom"],
"module": "esnext",
"moduleResolution": "nodenext",
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"outDir": "./dist",
"sourceMap": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strict": true,
"target": "es2020",
"types": ["jest", "node"],
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@fixture": ["src/fixtures/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "dist"],
"include": ["src/**/*.ts"]
}