mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-04-22 15:25:47 -07:00
3d721a95bb
'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>
18 lines
269 B
JSON
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/**/*"
|
|
]
|
|
}
|