For example:
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"declaration": false
}
}
Seems that rollup-plugin-typescript does not try to resolve the base tsconfig, so that the compilerOptions is not extended.
For example:
{ "extends": "../../tsconfig.base.json", "compilerOptions": { "rootDir": "./src", "outDir": "./dist", "declaration": false } }Seems that
rollup-plugin-typescriptdoes not try to resolve the base tsconfig, so that thecompilerOptionsis not extended.