ide-plugins/tsconfig.base.json

20 lines
316 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"outDir": "dist",
"lib": [
"ES2020"
],
"sourceMap": true,
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
".vscode-test"
]
}