-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (43 loc) · 1.12 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"compilerOptions": {
/* Project Options */
"allowJs": true,
"checkJs": true,
"declaration": true,
"importHelpers": true,
"lib": ["ESNext"],
"module": "ESNext",
"noEmit": true,
"sourceMap": true,
"target": "ES6",
/* Module Resolution */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "Node",
/* Strict Checks */
"strict": true,
/* Linter Checks */
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* Experimental */
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
/* Advanced */
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"newLine": "lf",
"resolveJsonModule": true,
"skipLibCheck": true,
"useDefineForClassFields": true
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
},
"include": ["src/**/*", "tests/**/*"],
"files": ["rollup.config.js", "jest.config.js", ".eslintrc.js", ".prettierrc.js"],
"exclude": ["node_modules"]
}