File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050 "build" : " run-s clean compile" ,
5151 "clean" : " run-p clean:*" ,
5252 "clean:build" : " rimraf ./lib" ,
53- "compile" : " tsc --build tsconfig.build.json" ,
53+ "compile" : " run-s compile:*" ,
54+ "compile:lib" : " tsc --build tsconfig.build.json" ,
55+ "compile:check" : " if [ ! -f lib/index.js ] || [ $(find lib -type f | wc -l) -le 30 ]; then echo 'File structure under lib is broken'; exit 1; fi" ,
5456 "tsc:root-types" : " node types-checks-filter-out-node_modules.js" ,
5557 "test" : " run-s test:*" ,
5658 "test:tsc" : " tsc --project tsconfig.json --noEmit" ,
Original file line number Diff line number Diff line change 77 "outDir" : " ./lib/" ,
88 "module" : " esnext" ,
99 "target" : " es2022" ,
10- "rootDir" : " ." ,
1110 "lib" : [" ES2022" , " DOM" ],
1211 "strictBindCallApply" : true ,
1312 "removeComments" : true ,
You can’t perform that action at this time.
0 commit comments