mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 13:40:25 +00:00
* Remove unneeded d.ts files from extensions Moves most extensions to use the lib files for the standard library that typescript provides. * Remove a few more node.d.ts references
15 lines
201 B
JSON
15 lines
201 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "ES5",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
"sourceMap": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |