Closed
Description
🐞 Bug report
Command (mark with an x
)
- new
- build
- serve
- test
- e2e
- generate
- add
- update
- lint
- xi18n
- run
- config
- help
- version
- doc
Description
I'm using solutions style tsconfig to add types for scripts.
// tsconfig.json
{
"files": [],
"references": [
{
"path": "./projects/my-app/tsconfig.app.json"
},
{
"path": "./projects/my-app/tsconfig.spec.json"
},
{
"path": "./tsconfig.scripts.json"
}
]
}
// tsconfig.scripts.json
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "CommonJS",
"esModuleInterop": true,
"types": ["node"],
"allowJs": true
},
"include": ["./extra-webpack.config.ts","./build-script.ts"]
}
Update to ng 10.1 remove my solutions style tsconfig. So "./tsconfig.scripts.json" will not work after update to 10.1.0-next.7