forked from Promises/wc3ts-missiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 1.24 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
{
"compilerOptions": {
"outDir": ".",
"baseUrl": "./src",
"allowJs": true,
"target": "es6",
"lib": [
"es6"
],
"moduleResolution": "classic",
"paths": {
"*": [
"../node_modules/*/src/index",
"../node_modules/*/lib/index",
"../node_modules/*/index",
"../node_modules/*/dist/index",
"../node_modules/*"
]
},
"plugins": [
{
"transform": "war3-transformer"
}
],
"types": [
"lua-types/core/coroutine",
"lua-types/core/global",
"lua-types/core/math",
"lua-types/core/metatable",
"lua-types/core/modules",
"lua-types/core/string",
"lua-types/core/table",
"lua-types/core/os",
"lua-types/special/5.3",
"war3-types/core/compat",
"war3-types/core/common",
"war3-types/core/blizzard",
"war3-types/core/commonai",
"war3-types/core/polyfill",
"war3-types/special/w3ts",
"mdx-m3-viewer/src/types"
]
},
"include": [
"src"
],
"exclude": [],
"tstl": {
"luaTarget": "5.3",
"noHeader": true,
"luaLibImport": "require",
"noImplicitSelf": true,
"luaBundle": "dist/tstl_output.lua",
"luaBundleEntry": "./src/main.ts"
}
}