31 lines
857 B
JSON
31 lines
857 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"target": "ES2020",
|
||
|
|
"outDir": "out",
|
||
|
|
"rootDir": "src",
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"alwaysStrict": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strictFunctionTypes": true,
|
||
|
|
"strictPropertyInitialization": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"lib": ["ES2020"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"types": ["node", "vscode", "mocha", "sinon", "ws", "lodash"],
|
||
|
|
"typeRoots": ["./node_modules/@types", "./src/types"]
|
||
|
|
},
|
||
|
|
"include": ["src"],
|
||
|
|
"exclude": ["node_modules", ".vscode-test"]
|
||
|
|
}
|