vscode-mssql/tsconfig.json

25 строки
578 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"outDir": "out",
"module": "CommonJS",
"target": "ES6",
"lib": [
"es6",
"ES2020",
"dom"
],
"sourceMap": true,
"allowUnusedLabels": false,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "react-jsx",
"rootDir": ".",
"noUnusedLocals": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
],
}