-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 887 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 887 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
{
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"target": "ES2016",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2016", "DOM"],
"sourceMap": true,
"sourceRoot": "/",
"mapRoot": "./",
"inlineSourceMap": false,
"inlineSources": true,
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"declaration": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitAny": true,
"resolveJsonModule": true,
"allowJs": false
},
"include": ["src", "scripts", "test", "test-browser", "*.ts", ".*.ts"],
"exclude": ["node_modules", "es", "es-legacy", "lib", "tslib", "tses", "types-legacy"]
}