File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 - name : Build tsc
2525 run : tsc --build --verbose
2626
27+ - name : Commit changes
28+ if : ${{ github.event_name == 'push' }}
29+ uses : EndBug/add-and-commit@v9
30+ with :
31+ add : ./scripts
32+
2733 format-check :
2834 name : ' Format Check'
2935 runs-on : ubuntu-latest
4349
4450 - name : Format Check
4551 run : node ./tools/index.js
46-
47- - uses : actions/upload-artifact@v3
52+
53+ - name : Commit changes
54+ if : ${{ github.event_name == 'push' }}
55+ uses : EndBug/add-and-commit@v9
4856 with :
49- name : README files
50- path : node_modules/.cache
57+ add : ./scripts
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "allowJs" : true ,
4+ "checkJs" : true ,
5+ "noEmit" : true ,
6+ },
7+ "extends" : " ./tsconfig.json"
8+ }
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "allowJs" : true ,
4- "checkJs" : true ,
3+ // script environment
54 "module" : " es2020" ,
65 "target" : " es2021" ,
76 "moduleResolution" : " classic" ,
1817 },
1918 "types" : [],
2019 "typeRoots" : [],
21- // debug purpsoses
22- "noEmit" : true ,
20+ "declaration" : true ,
21+ // repository config
2322 "diagnostics" : true ,
24- },
23+ }
2524}
Original file line number Diff line number Diff line change 33 "exclude" : [ " docs" , " node_modules" ],
44 "references" : [
55 { "path" : " tools" },
6- { "path" : " scripts" }
6+ { "path" : " scripts/tsconfig.json" },
7+ { "path" : " scripts/jsconfig.json" }
78 ]
89}
You can’t perform that action at this time.
0 commit comments