Files
vscode/extensions/markdown/tsconfig.json
Matt Bierner 0fe7046f49 Enable Strict Null Checks and Use Lib References in Markdown Extension (#16346)
Makes a few changes to the markdown extension:

* Enables explicit null checks.
* Enables no implicit any checks.
* Switch to using TS 2.0 lib files.

This change required removing the mocha declaration from the shared `declare.d.ts`. Everything seems to compile fine without it.
2016-12-02 11:07:40 -08:00

18 lines
275 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": [
"es5",
"es2015.promise"
],
"outDir": "./out",
"sourceMap": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true
},
"exclude": [
"node_modules"
]
}