mirror of
https://github.com/VSCodeVim/Vim.git
synced 2024-11-12 15:01:56 +03:00
26 lines
648 B
JSON
26 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2021"],
|
|
"module": "commonjs",
|
|
"target": "ES2021",
|
|
"outDir": "out",
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"platform/*": ["src/platform/node/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true
|
|
// "isolatedModules": true,
|
|
},
|
|
"exclude": ["node_modules", "!node_modules/@types"]
|
|
}
|