forked from hfour/yads
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 724 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 724 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
{
"include": ["src"],
"compilerOptions": {
"preserveWatchOutput": true,
"outDir": "./build",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"module": "commonjs",
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"baseUrl": "./",
"target": "es2015",
"allowJs": false,
"allowSyntheticDefaultImports": false,
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./@types"],
"plugins": [],
"esModuleInterop": true
},
"exclude": ["build", "node_modules", ".git", ".cache", ".vscode"]
}