18 lines
581 B
Lua
18 lines
581 B
Lua
---@type ToolchainRequirements
|
|
return {
|
|
plugins = {
|
|
table.unpack(require('toolchain.web.formatter').plugins),
|
|
table.unpack(require('toolchain.web.actions').plugins),
|
|
table.unpack(require('toolchain.web.diagnostics').plugins),
|
|
table.unpack(require('toolchain.web.debugger').plugins),
|
|
table.unpack(require('toolchain.web.plugins')),
|
|
},
|
|
highlighters = {
|
|
'html',
|
|
'css',
|
|
'scss',
|
|
'javascript',
|
|
'typescript',
|
|
},
|
|
language_servers = require('toolchain.web.language_server').requirements,
|
|
}
|