-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.test.json
More file actions
executable file
·48 lines (48 loc) · 1.11 KB
/
tsconfig.test.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.11 KB
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
{
"compilerOptions": {
"outDir": "dist/js",
"baseUrl": "src",
"allowJs": true,
"target": "es6",
"lib": [ "es2020" ],
"moduleResolution": "classic",
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictNullChecks": true,
"paths": {
"*": [
"../node_modules/*/dist/index",
"../node_modules/*/index",
"../node_modules/*/lib/index",
"../node_modules/*/src/index",
"../node_modules/*"
],
"test": ["../test"]
},
"esModuleInterop": true,
"plugins": [{"transform": "war3-transformer"}],
"types": [
"@types/jest",
"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", "scripts", "test"],
"exclude": []
}