File tree Expand file tree Collapse file tree 6 files changed +3355
-3379
lines changed Expand file tree Collapse file tree 6 files changed +3355
-3379
lines changed Original file line number Diff line number Diff line change 1111 "editor.formatOnSave" : true ,
1212 "markdownlint.config" : {
1313 "MD033" : false
14- }
14+ },
15+ "typescript.tsdk" : " node_modules/typescript/lib"
1516}
Original file line number Diff line number Diff line change 400400 "email" : " xsro@foxmail.com"
401401 },
402402 "license" : " MIT"
403- }
403+ }
Original file line number Diff line number Diff line change 11import * as path from 'path' ;
2- import * as Mocha from 'mocha' ;
3- import * as glob from 'glob' ;
2+ import Mocha from 'mocha' ;
3+ import glob from 'glob' ;
44import * as vscode from 'vscode' ;
55
66export function run ( ) : Promise < void > {
Original file line number Diff line number Diff line change 33
44export const fetch =
55 process . platform
6- ? eval ( "( ...args) => import('node-fetch').then(({default: fetch}) => fetch(...args))" )
6+ ? ( ...args : any [ ] ) => import ( 'node-fetch' ) . then ( ( { default : fetch } ) => ( fetch as any ) ( ...args ) )
77 : window . fetch ;
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "module" : " commonjs " ,
3+ "module" : " node12 " ,
44 "target" : " es2017" ,
55 "outDir" : " dist" ,
66 "lib" : [
You can’t perform that action at this time.
0 commit comments