I'm working on a project with the latest version of WebStorm 2020.3.1 and have multiple tsconfig.json
files, but I only want automatic re-compilation for one of them. I've configured everything as shown below.
Interestingly, when I run tsc -p ./tsconfig-electron.json
, it works perfectly.
What could be causing the issue here?
https://i.sstatic.net/L8mo6.png
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
}