-
Notifications
You must be signed in to change notification settings - Fork 12.6k
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
Changes to tsconfig.json not picked up #11803
Comments
@vladima can you take a look. |
cannot repro on the latest master, is there anything else I need to do? |
nope. i repro'ed this on 2.0.6 |
@mhegazy Were you able to verify yourself that the issue was fixed? I can repro this with VS 2017 Update 2. Changes to tsconfig.json {
"compileOnSave": true,
"compilerOptions": {
"outDir": "../../wwwroot/js",
"removeComments": false
}
} main.ts export class Main
{
// test comment
constructor() {
console.log("inside constructor");
}
foo(): void {
console.log("inside foo");
}
} Changing the value of |
Symbol
definitionlib
in tsconfig.json to includees6
, and savea.ts
. expect the error to go awayActual:
Error does not go away, closing and reopening the file does.
Expected:
Error goes away on next refresh.
The text was updated successfully, but these errors were encountered: