I have a project using the latest version of WebStorm 2020.3.1. I have multiple tsconfig.json files but I only need automatic re-compilation through WebStorm for one of them. I have configured as attached.
Strange thing is that running tsc -p ./tsconfig-electron.json works fine.
What is the issue here?
tsconfig-electron.json:
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"sourceMap": true,
"outDir": "electron-dist",
"rootDir": "electron-src",
"removeComments": true,
"strict": true
},
"exclude": [
"node_modules",
"dist",
"src",
"e2e"
],
"declaration": true
}
