]> git.proxmox.com Git - mirror_xterm.js.git/blob - tsconfig.json
Merge pull request #485 from Tyriar/remove_comments_in_build
[mirror_xterm.js.git] / tsconfig.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "es5",
5 "rootDir": "src",
6 "allowJs": true,
7 "outDir": "lib",
8 "sourceMap": true,
9 "removeComments": true
10 },
11 "include": [
12 "src/**/*"
13 ],
14 "exclude": [
15 "src/addons/**/*",
16 "build",
17 "demo",
18 "dist",
19 "out",
20 "test",
21 "node_modules",
22 "docs"
23 ]
24 }