typescript.java
typescript.java copied to clipboard
Typescript resources show .js files when excluded in tsconfig.json
I have a tsconfig like:
{
"compilerOptions": {
"target": "ES5",
"module": "amd",
"moduleResolution": "classic",
"listEmittedFiles": true
},
"compileOnSave": true,
"buildOnSave": true,
"include": ["**/*.ts"],
"exclude": ["**/*.js"]
}
So .js should be excluded and are excluded from the Typescript build. Confusing is some .js resources are displayed in the Typescript resources view.
It's because issue https://github.com/angelozerr/typescript.java/issues/86 is not implemented. The scope is computed with Java and I have not supported glob pattern.