File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
packages/babel-preset-base/src Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ export interface PresetOptions {
55 noImportMeta ?: boolean ;
66 noClassProperties ?: boolean ;
77 noJsonStrings ?: boolean ;
8+ noRuntime ?: boolean ;
89 hasReact ?: boolean ;
910 presetEnv ?: { } ;
1011 presetReact ?: { } ;
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ module.exports = api => {
3232 noImportMeta: false ,
3333 noClassProperties: false ,
3434 noJsonStrings: false ,
35+ noTuntime: false ,
3536 hasReact: true ,
3637 presetEnv: {
3738 // Override Options for @babel/preset-env
@@ -71,6 +72,7 @@ interface PresetOptions {
7172 noImportMeta? : boolean ;
7273 noClassProperties? : boolean ;
7374 noJsonStrings? : boolean ;
75+ noRuntime? : boolean ;
7476 hasReact? : boolean ;
7577 presetEnv? : {};
7678 presetReact? : {};
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ module.exports = api => {
5656 noImportMeta: false ,
5757 noClassProperties: false ,
5858 noJsonStrings: false ,
59+ noRuntime: false ,
5960 hasReact: true ,
6061 presetEnv: {
6162 // Override Options for @babel/preset-env
You can’t perform that action at this time.
0 commit comments