-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.26 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
{
// @see https://typescripttolua.github.io/docs/configuration
"extends": "./tsconfig-common.json",
"compilerOptions": {
"checkJs": true,
"outDir": "./lua",
// @see https://github.com/TypeScriptToLua/lua-types#installation
// @see https://typescripttolua.github.io/docs/advanced/language-extensions
"types": ["lua-types/jit", "@typescript-to-lua/language-extensions", "@zaza/types"],
"typeRoots": ["./types", "./node_modules/@types"]
},
"exclude": ["pkgs", "lua"],
"tstl": {
// @see https://github.com/neovim/neovim/blob/4c499899b2c3b31d57c1911c522683bdb2e32a0a/runtime/doc/lua.txt#L257
"luaTarget": "JIT",
"noImplicitSelf": true,
"sourceMapTraceback": false,
"buildMode": "default",
"tstlVerbose": true,
"noResolvePaths": [
"plugins.+",
"nvim-semantic-tokens*",
"nvim-treesitter*",
"cmp*",
"size-matters",
"mappings",
"packages",
"lspconfig",
"luasnip*",
"telescope*",
"surround",
"keys",
"packer",
"nvim-textmate",
"packer.util",
"nord",
"feline",
"feline.providers.lsp",
"feline.providers.vi_mode",
"FTerm",
"indent_blankline",
"lualine"
]
}
}