File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ const SANDBOX_ONLY = !!process.env.SANDBOX_ONLY;
1818const __DEV__ = NODE_ENV === 'development' ; // eslint-disable-line no-underscore-dangle
1919const __PROD__ = NODE_ENV === 'production' ; // eslint-disable-line no-underscore-dangle
2020// const __TEST__ = NODE_ENV === 'test'; // eslint-disable-line no-underscore-dangle
21- const babelConfig = __DEV__ ? babelDev : babelProd ;
21+ const babelConfig = __DEV__ && ! SANDBOX_ONLY ? babelDev : babelProd ;
2222
2323const publicPath = SANDBOX_ONLY || __DEV__ ? '/' : getHost . default ( ) + '/' ;
2424
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export function initializeSettings() {
3535 'editor.tabSize' : 2 ,
3636 'editor.minimap.enabled' : false ,
3737 'workbench.editor.openSideBySideDirection' : 'down' ,
38+ 'svelte.plugin.typescript.diagnostics.enable' : false ,
3839 } ,
3940 null ,
4041 2
You can’t perform that action at this time.
0 commit comments