forked from Azure/vscode-aks-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
19 lines (19 loc) · 953 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2022",
"outDir": "out",
"lib": ["ES2022"],
"sourceMap": true,
"rootDir": ".", /* This is not the `src` directory because some TS files import `package.json` */
"strict": true, /* enable all strict type-checking options */
"noUnusedLocals": true, /* Report errors on unused locals. */
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
"noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
"noUnusedParameters": true, /* Report errors on unused parameters. */
"resolveJsonModule": true, /* Needed to resolve JSON file imports, e.g. package.json */
"esModuleInterop": true, /* Needed to resolve JSON file imports, e.g. package.json */
"skipLibCheck": true,
},
"include": ["src"]
}