Closed timsofteng closed 1 year ago
Hello. I've found that with --incremental flag tsc works faster cause it uses cache. Hot to add this flag to tsc.nvim?
--incremental
tsc.nvim
You should be able to pass it in via the flags configuration
flags
require('tsc').setup({ flags = { incremental = true } })
Hello. I've found that with
--incremental
flag tsc works faster cause it uses cache. Hot to add this flag totsc.nvim
?