File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1+ import type { Context } from 'js-slang' ;
2+
3+ declare const ctx : Context ;
4+ export default ctx ;
Original file line number Diff line number Diff line change 3232 "noImplicitAny" : false ,
3333 "verbatimModuleSyntax" : true ,
3434 "paths" : {
35- "js-slang/context" : [" ../../../../modules-lib/src/types/js-slang /context.d.ts" ]
35+ "js-slang/context" : [" ./context.d.ts" ]
3636 },
3737 "ignoreDeprecations" : " 5.0"
3838 },
Original file line number Diff line number Diff line change @@ -130,8 +130,7 @@ export const {
130130 } ;
131131 }
132132} , tscResult => {
133- const inputType = 'entryPoint' in tscResult . input ? 'tab' : 'bundle' ;
134- const prefix = `${ chalk . blueBright ( `[${ inputType } ${ tscResult . input . name } ]` ) } : ${ chalk . cyanBright ( 'tsc completed' ) } ` ;
133+ const prefix = `${ chalk . blueBright ( `[${ tscResult . input . type } ${ tscResult . input . name } ]` ) } : ${ chalk . cyanBright ( 'tsc completed' ) } ` ;
135134 if ( tscResult . severity === 'error' && 'error' in tscResult ) {
136135 return `${ prefix } ${ chalk . cyanBright ( 'with' ) } ${ chalk . redBright ( 'errors' ) } : ${ tscResult . error } ` ;
137136 }
You can’t perform that action at this time.
0 commit comments