]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Clean up tsconfig.json.
authorAleksandr Andrienko <aandrienko@codenvy.com>
Mon, 6 Mar 2017 11:13:11 +0000 (13:13 +0200)
committerAleksandr Andrienko <aandrienko@codenvy.com>
Mon, 6 Mar 2017 11:17:01 +0000 (13:17 +0200)
'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>
tsconfig.json

index c9e7fd46b5da96e8d12e15a30eb7a435ca018221..2e9703dd22366acd1e355b4537145270574d69cf 100644 (file)
     "src/**/*"
   ],
   "exclude": [
-    "src/addons/**/*",
-    "build",
-    "demo",
-    "dist",
-    "out",
-    "test",
-    "node_modules",
-    "docs"
+    "src/addons/**/*"
   ]
 }