返回 CodeWhale
tsconfig.json
根目录 / extensions / vscode / tsconfig.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "ES2022",
5 "lib": ["ES2022"],
6 "outDir": "out",
7 "rootDir": "src",
8 "strict": true,
9 "sourceMap": true,
10 "esModuleInterop": true,
11 "skipLibCheck": true
12 },
13 "include": ["src/**/*.ts"]
14 }
15
15 lines JSON