mirror_xterm.js/tsconfig.json
Aleksandr Andrienko 3d721a95bb Clean up tsconfig.json.
'include' field in the tsconfig.json defines source scope (top level of this scope is "src" folder), so we do not need 'exclude' folders in the root of the project, because this folders had already excluded by 'include' scope.

Signed-off-by: Aleksandr Andrienko <aandrienko@codenvy.com>
2017-03-06 13:17:01 +02:00

18 lines
269 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"rootDir": "src",
"allowJs": true,
"outDir": "lib",
"sourceMap": true,
"removeComments": true
},
"include": [
"src/**/*"
],
"exclude": [
"src/addons/**/*"
]
}