Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tsconfig.json extending from base tsconfig.json cannot override "declaration" to false #17357

Closed
benny-medflyt opened this issue Jul 22, 2017 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@benny-medflyt
Copy link

TypeScript Version: 2.4.1

If we have a "base" tsconfig.json file:

{
    "compilerOptions": {
        "declaration": true,
        "declarationDir": "./dist/types"
    }
}

And we try to create another tsconfig.json that extends it:

{
    "extends": "../base/tsconfig.json",
    "compilerOptions": {
        "declaration": false
    }
}

Then it doesn't work. We get error:

error TS5052: Option 'declarationDir' cannot be specified without specifying option 'declaration'.

There doesn't appear to be a way to "unset" the "declarationDir" setting. (Tried null, empty string, undefined)

@mhegazy
Copy link
Contributor

mhegazy commented Aug 23, 2017

looks like a duplicate of #16838 and #14184

@mhegazy
Copy link
Contributor

mhegazy commented Sep 6, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Sep 6, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

2 participants