forked from blizzhackers/kolbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
43 lines (43 loc) · 903 Bytes
/
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
{
"compilerOptions": {
"module": "None",
"lib": [
"ES2015",
"es2015.collection",
"ES2015.Promise",
"ES2016.Array.Include",
"ES2017.Object",
"ScriptHost",
],
"target": "ES6",
"allowJs": true,
"checkJs": false,
"moduleResolution": "classic",
"allowUmdGlobalAccess": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noEmit": true,
"strict": true,
// "declaration": true,
// "emitDeclarationOnly": true,
"baseUrl": "./d2bs/kolbot/",
"rootDir": "./d2bs/kolbot/",
// "outDir": "./d2bs/kolbot/sdk/types/",
"outFile": "./d2bs/kolbot/data/out.js",
"typeRoots": [
"./d2bs/kolbot/sdk/globals.d.ts",
"./d2bs/kolbot/sdk/types/",
"./d2bs/kolbot/libs/SoloPlay/index.d.ts",
],
},
"include": [
"./d2bs/kolbot/*.dbj",
"./d2bs/kolbot/**/*.js",
"**/*.dbl",
],
"exclude": [
"node_modules",
"**/node_modules/*",
"**/data/",
],
}