File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "reporter" : [
3
+ " html" ,
4
+ " text"
5
+ ],
6
+ "reportsDirectory" : " ./coverage" ,
7
+ "src" : [
8
+ " src"
9
+ ],
10
+ "exclude" : [
11
+ " std/**/*" ,
12
+ " tests/**/*" ,
13
+ " dist/**/*" ,
14
+ " bin/asinit.js" ,
15
+ " lib/**/*" ,
16
+ " scripts/**/*" ,
17
+ " src/glue/wasm/**/*" ,
18
+ " util/browser/**/*"
19
+ ],
20
+ "clean" : true ,
21
+ "exclude-after-remap" : true
22
+ }
Original file line number Diff line number Diff line change 9
9
.idea
10
10
cli /index.generated.js
11
11
src /diagnosticMessages.generated.ts
12
+ coverage /
Original file line number Diff line number Diff line change 31
31
"esbuild" : " ^0.14.1" ,
32
32
"eslint" : " ^8.2.0" ,
33
33
"glob" : " ^7.2.0" ,
34
- "typescript" : " ~4.5.2"
34
+ "typescript" : " ~4.5.2" ,
35
+ "c8" : " ^7.11.2"
35
36
},
36
37
"type" : " module" ,
37
38
"exports" : {
65
66
"lint" : " eslint --max-warnings 0 --ext js . && eslint --max-warnings 0 --ext ts ." ,
66
67
"build" : " node scripts/build" ,
67
68
"watch" : " node scripts/build --watch" ,
68
- "test" : " npm run test:parser && npm run test:compiler -- --parallel && npm run test:browser && npm run test:asconfig && npm run test:transform" ,
69
+ "test" : " c8 npm run test:runner" ,
70
+ "test:runner" :" npm run test:parser && npm run test:compiler && npm run test:browser && npm run test:asconfig && npm run test:transform" ,
69
71
"test:parser" : " node --enable-source-maps tests/parser" ,
70
72
"test:compiler" : " node --enable-source-maps --experimental-wasi-unstable-preview1 --no-warnings tests/compiler" ,
71
73
"test:browser" : " node --enable-source-maps tests/browser" ,
You can’t perform that action at this time.
0 commit comments