-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig-test.json
More file actions
36 lines (36 loc) · 1.12 KB
/
tsconfig-test.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
35
36
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"jsx": "preserve",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"outDir": "./dist-test",
"declaration": true,
"declarationMap": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importHelpers": true,
"downlevelIteration": true,
"strict": true,
"alwaysStrict": true,
"newLine": "LF",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"pretty": true,
"resolveJsonModule": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"skipLibCheck": true,
"lib": ["es2015", "dom"],
"rootDir": "test"
},
"include": ["test-typescript-axios", "test-typescript-models", "test-typescript-react-query"],
"exclude": ["node_modules", "dist", "dist-test"]
}