I have the following typescript file:
tsconfig.lib.json:
{
"extends": "../../tsconfig.json",
"exclude": [
"src/test.ts",
"**/*.spec.ts",
],
"include": [
"**/*.stories.ts"
]
}
I'd like to also include the files inside my original tsconfig.json. How can I include more files without overriding the original "include" settings?
Thanks!
This is not supported (at least currently)
files, include and exclude from the inheriting config file overwrite those from the base config file
Docs
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With