wip(ssr): remove cjs codegen mode

This commit is contained in:
Evan You
2020-02-04 15:58:54 -05:00
parent 6a5ed49ea9
commit ba263c909c
3 changed files with 6 additions and 7 deletions

View File

@@ -60,10 +60,8 @@ export interface CodegenOptions {
// - Function mode will generate a single `const { helpers... } = Vue`
// statement and return the render function. It is meant to be used with
// `new Function(code)()` to generate a render function at runtime.
// - CommonJS mode is like function mode except it retrives helpers from
// `require('vue')`.
// - Default: 'function'
mode?: 'module' | 'function' | 'cjs'
mode?: 'module' | 'function'
// Generate source map?
// - Default: false
sourceMap?: boolean