This will remove an warning in VS Code [1] and, more important, will reduce the
number of files that TS will watch when compiling or linting.
[1] To enable project-wide JavaScript/TypeScript language features,
exclude large folders with source files that you do not work on.
Signed-off-by: Tiago Melo <tmelo@suse.com>
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
- "typeRoots": ["node_modules/@types"],
- "lib": ["es2017", "dom"],
+ "typeRoots": [
+ "node_modules/@types"
+ ],
+ "lib": [
+ "es2017",
+ "dom"
+ ],
"allowJs": true
- }
+ },
+ "exclude": [
+ ".protractor-report",
+ "coverage",
+ "dist",
+ "node_modules"
+ ]
}