You've already forked wizgit-vscode-extension
22 lines
479 B
JSON
22 lines
479 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"outDir": "out",
|
|
"rootDir": "src",
|
|
"lib": [
|
|
"ES2021",
|
|
"DOM"
|
|
],
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
} |