-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 825 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 825 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
31
32
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"lib": ["dom", "es2015", "es2017", "es2018", "es2019", "es2020", "es5", "es6", "es7", "esnext"],
"module": "es2020",
"moduleResolution": "node",
"noEmit": false,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"strict": true,
"target": "es2019",
"typeRoots": ["./node_modules/@types"],
"types": ["jest", "node", "react"],
"sourceMap": true,
"sourceRoot": "/",
"inlineSources": true,
"resolveJsonModule": true,
"skipLibCheck": true
},
"exclude": [
"**/public/**/*",
"**/dist/**/*",
".yarn/**/*",
"**/node_modules/**/*",
"**/coverage/**/*",
"archive/**/*"
]
}