BatchExplorer/desktop/tsconfig.node.json

18 строки
364 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"outDir": "build"
},
// This is not actually used for building but to let the editor know what files use this config
"include": [
"./src/client/**/*.ts",
"./src/common/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}