-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 1.07 KB
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"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` */
"paths": {
"containerization-assist-mcp/sdk": ["./node_modules/containerization-assist-mcp/dist-cjs/src/sdk"]
},
"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"]
}