-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.lua.json
More file actions
30 lines (30 loc) · 773 Bytes
/
Copy pathtsconfig.lua.json
File metadata and controls
30 lines (30 loc) · 773 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"include": ["lua", "lua/**/*.ts", "lua/**/*.json"],
"exclude": ["!lua"],
"compilerOptions": {
"composite": true,
"declarationMap": false,
"moduleResolution": "node10",
"allowJs": false,
"allowSyntheticDefaultImports": true,
"lib": ["ESNext"],
"outDir": "lua",
"baseUrl": "lua",
"paths": {
"@/*": ["./*"]
},
"resolveJsonModule": true,
"esModuleInterop": true,
"rootDir": "lua",
"strict": true,
"target": "ESNext",
"types": ["lua-types/5.1", "@gkzhb/lua-types-nvim", "./lua/vim.d.ts"]
},
"tstl": {
"luaLibImport": "require-minimal",
"luaTarget": "JIT",
"noResolvePaths": ["zod", "node:fs"],
"tstlVerbose": true
}
}