-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
16 lines (16 loc) · 667 Bytes
/
tsconfig.json
File metadata and controls
16 lines (16 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"strict": true,
"noImplicitAny": true,
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"outDir": "./build",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["src/typings/", "node_modules/@types/"]
},
"include": ["./src"]
}