-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 704 Bytes
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 704 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
33
34
35
{
"compilerOptions": {
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"allowJs": true,
"checkJs": false,
"module": "esnext",
"target": "es5",
"jsx": "react",
"moduleResolution": "node",
"lib": ["es2020", "es2019", "es2018", "es2016", "es2015", "es6", "es2017", "dom"],
"outDir": "./dist"
},
"typeAcquisition": {
"enable": true
},
"typeRoots": [
"./typings.d.ts",
"./node_modules/@types"
],
"include": [
".src/.ts",
"src/**/*",
"./typings.d.ts"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"cypress",
"server",
"dist"
]
}