Files
vscode-extension-samples/comment-sample/tsconfig.json
Matt Bierner dce3875a93 Don't set explicit lib in tsconfigs
The one we get from the `target` is correct in almost all cases for VS Code
2019-05-30 18:24:08 -07:00

12 lines
195 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "out",
"sourceMap": true,
"strict": true,
"rootDir": "src"
},
"exclude": ["node_modules", ".vscode-test"]
}