-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
64 lines (64 loc) · 1.62 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* VSCode Typehint Module
* Set Filetype JSON with Comments to disable errors of this files
*/
{
"compilerOptions": {
"module": "CommonJS",
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"outDir": "dist/dts",
"rootDir": "./",
"moduleResolution": "node",
"allowJs": true,
"noEmit": true,
"checkJs": false,
"watch": false,
"typeRoots": ["./node_modules/@types", "./libs/js"],
"types": [
"datatables.net",
"jquery",
"requirejs",
"node",
"select2",
"toastr",
"vuepress-types",
"codemirror",
"crypto-js"
],
"target": "ES5",
"lib": [
"DOM",
"ES5",
"ES6",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020",
"DOM.Iterable",
"WebWorker"
]
},
"include": ["*.json", "./libs/**/*", "./etc/**/*", "./views/**/*", "./src/MVC/themes/**/*", "./assets/node/**/*"],
"exclude": [
"node_modules",
"./src/MVC/themes/assets/js",
"**/node_modules/*",
"**/node_modules/**",
"./src",
"./vendor",
"./tmp",
"./dist",
"./assets/js",
"**.min.js",
"**/*.min.js",
"./src/MVC/themes/assets/js",
"./libs/compiler/**/*",
"./libs/src/compiler/framework.js",
"./libs/compiler/framework.js",
"./libs/src/observatory/lib/**/*"
]
}