File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 3434 "check:lint" : " eslint --report-unused-disable-directives ." ,
3535 "check:lint:fix" : " pnpm run check:lint --fix" ,
3636 "build" : " pnpm run clean:dist && tsgo --build" ,
37- "check:tsc" : " tsgo --noEmit" ,
37+ "check:tsc" : " tsgo --noEmit -p tsconfig.check.json " ,
3838 "clean:dist" : " del-cli 'dist' '**/*.tsbuildinfo'" ,
3939 "clean" : " run-s -c clean:*" ,
4040 "clean:cache" : " del-cli '**/.cache'" ,
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ./tsconfig.base.json" ,
3+ "compilerOptions" : {
4+ "module" : " esnext" ,
5+ "moduleResolution" : " bundler" ,
6+ "noEmit" : true ,
7+ "noPropertyAccessFromIndexSignature" : false ,
8+ "noUncheckedIndexedAccess" : false ,
9+ "types" : [" vitest/globals" , " node" ],
10+ "verbatimModuleSyntax" : false
11+ },
12+ "include" : [" test/**/*.mts" , " src/**/*.ts" ]
13+ }
You can’t perform that action at this time.
0 commit comments