15 lines
350 B
JSON
15 lines
350 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"target": "ES2020",
|
||
|
"lib": ["ES2020"],
|
||
|
"sourceMap": true,
|
||
|
"rootDir": "src",
|
||
|
"strict": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"outDir": "out"
|
||
|
},
|
||
|
"exclude": ["node_modules", "webview", ".vscode-test"]
|
||
|
}
|