-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
49 lines (45 loc) · 1.28 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
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"incremental": true,
"target": "ESNext",
"module": "commonjs",
"sourceMap": true,
"strict": true,
"moduleResolution": "Node10",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"skipDefaultLibCheck": true,
"lib": ["ESNext"],
"outDir": "build/app",
"rootDir": "./src",
"types": [
"lua-types/5.4"
],
"baseUrl": "./node_modules",
"paths": {
"http.server": ["tarantoolscript/src/http.server.d.ts"],
"uuid": ["tarantoolscript/src/uuid.d.ts"],
"json": ["tarantoolscript/src/json.d.ts"],
"log": ["tarantoolscript/src/log.d.ts"],
"luatest": ["tarantoolscript/src/luatest.d.ts"],
"http.client": ["tarantoolscript/src/http.client.d.ts"]
}
},
"tstl": {
"luaTarget": "JIT",
"buildMode": "default",
"sourceMapTraceback": true,
"noImplicitGlobalVariables": true,
"tstlVerbose": true,
"noResolvePaths": [
"http.server",
"uuid",
"json",
"log",
"luatest",
"http.client"
]
}
}