-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 745 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 745 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es6", // TODO: change esnext
"module": "esnext",
"lib": ["esnext", "es2020", "es2019", "es2018", "es2017", "dom"],
"jsx": "react",
"moduleResolution": "node",
"composite": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": true,
"noUnusedLocals": false,
"removeComments": false,
"skipLibCheck": true,
"strict": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"plugins": [],
"typeRoots": ["node_modules/@types"]
},
"exclude": ["node_modules"]
}