This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
67 lines (67 loc) · 1.53 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
65
66
67
{
"compilerOptions": {
"outDir": "src",
"baseUrl": "src-ts",
"rootDir": "src-ts",
"paths": {
"*": [
"./node_modules/*/src/index",
"./node_modules/*/lib/index",
"./node_modules/*/index",
"./node_modules/*/dist/index"
]
},
"plugins": [
{
"transform": "ts-transformer-imports"
}
],
"allowJs": false,
"target": "es6",
"lib": [
"es6"
],
"moduleResolution": "classic",
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"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/debug",
"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/ceres"
]
},
"include": [
"src-ts",
"src-ts/node_modules"
],
"exclude": [
"src-ts/node_modules/*/test",
"src-ts/node_modules/*/tests",
"src-ts/node_modules/war3-types",
"src-ts/node_modules/lua-types",
"src-ts/node_modules/convertjasstots",
"src-ts/node_modules/@types",
],
"tstl": {
"luaTarget": "5.3",
"noHeader": true,
"luaLibImport": "require",
"noImplicitSelf": true
}
}