mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 15:36:29 -04:00
13 lines
237 B
JavaScript
13 lines
237 B
JavaScript
import { createBundle } from 'dts-buddy';
|
|
|
|
await createBundle({
|
|
project: 'tsconfig.json',
|
|
output: 'web-tree-sitter.d.ts',
|
|
modules: {
|
|
'web-tree-sitter': 'src/index.ts'
|
|
},
|
|
compilerOptions: {
|
|
stripInternal: true,
|
|
},
|
|
});
|