mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-10 22:29:25 +03:00
23 lines
438 B
JSON
23 lines
438 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowUnusedLabels": false,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test"
|
|
]
|
|
}
|