feat(compiler): basic codegen with source map support

This commit is contained in:
Evan You
2019-09-19 23:05:51 -04:00
parent 98571ab496
commit 9b1a548c6b
15 changed files with 235 additions and 41 deletions

View File

@@ -1,6 +1,5 @@
export { parse, ParserOptions, TextModes } from './parse'
export { transform, Transform, TransformContext } from './transform'
export { transform, TransformOptions, Transform } from './transform'
export { generate, CodegenOptions, CodegenResult } from './codegen'
export { ErrorCodes } from './errors'
export * from './ast'
export { transformIf } from './directives/vIf'