UNPKG

@stordata/grammars

Version:

A collection of ANTLR grammars used at Stordata. This project exists so that we can package the grammars (and various utilities) as a CommonJS module. The `antlr4` Javascript runtime is only available as an ES module at the time of writing.

12 lines (11 loc) 208 B
export default { mode: 'production', entry: './src/index.js', output: { path: new URL('dist', import.meta.url).pathname, filename: 'main.cjs', library: { type: 'commonjs' } } };