Skip to content

Commit fb1c9a5

Browse files
committed
Merge branch 'main' of github.com:wpilibsuite/systemcore-blocks-interface into pr_project_info_json
2 parents 32fc8dd + ba2a496 commit fb1c9a5

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@ jobs:
1515
node-version: 20
1616
- name: Install Dependencies
1717
run: npm ci
18+
- name: Check TypeScript Errors
19+
run: npm run tscheck
1820
- name: Install Playwright Browsers
1921
run: npx playwright install --with-deps
20-
2122
- name: Build Project
2223
run: npm run build
2324
- name: Run tests
24-
run: npm test
25+
run: npm test

package-lock.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,16 @@
2525
"react-i18next": "^15.6.0",
2626
"react-syntax-highlighter": "^15.6.1",
2727
"semver": "^7.7.2",
28+
"typescript": "^5.9.2",
2829
"web-vitals": "^5.0.3"
2930
},
3031
"scripts": {
3132
"start": "vite",
3233
"build": "vite build",
3334
"test": "vitest",
3435
"gen": "node src/Blockly/gen.js",
35-
"dev": "vite"
36+
"dev": "vite",
37+
"tscheck": "npx tsc -b --noEmit"
3638
},
3739
"eslintConfig": {
3840
"extends": [

tsconfig.node.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
"noFallthroughCasesInSwitch": true,
2121
"noUncheckedSideEffectImports": true
2222
},
23-
"include": ["vite.config.ts"]
23+
"include": ["vite.config.mts"]
2424
}

0 commit comments

Comments
 (0)