mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
18 lines
323 B
JSON
18 lines
323 B
JSON
{
|
|
"compilerOptions": {
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"rootDir": ".",
|
|
"outDir": "out",
|
|
"lib": [ "es6"],
|
|
"sourceMap": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"server"
|
|
]
|
|
} |