mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-13 10:17:02 +03:00
23 lines
450 B
JSON
23 lines
450 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"alwaysStrict": true,
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"!node_modules/@types"
|
|
]
|
|
}
|