-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (18 loc) · 871 Bytes
/
Copy pathtsconfig.json
File metadata and controls
18 lines (18 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "out",
"lib": ["ES2020", "DOM"],
"sourceMap": true,
"strict": true /* enable all strict type-checking options */,
"skipLibCheck": true /* Don't check node_modules */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"noUnusedLocals": true /* Enable error reporting when local variables aren't read. */,
"noUnusedParameters": true /* Raise an error when a function parameter isn't read. */,
"noImplicitReturns": true /* Enable error reporting for codepaths that do not explicitly return in a function. */,
"noFallthroughCasesInSwitch": true /* Enable error reporting for fallthrough cases in switch statements. */
},
"include": ["src/**/*", "docs"],
"exclude": ["test/**/*", "node_modules", "out"]
}