mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
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.
18 lines
275 B
JSON
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"
|
|
]
|
|
} |