Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
npm install
npm run build
- name: Run TypeScript Compiler
run: npx tsc

- name: Test types (core)
working-directory: packages/core
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test:jsr": "npm run test:jsr --workspaces --if-present",
"test:types": "tsc"
"test:types": "tsc && npm run test:types --workspaces --if-present"
},
"workspaces": [
"packages/*"
Expand Down
1 change: 1 addition & 0 deletions packages/migrate-config/src/migrate-config-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import fsp from "node:fs/promises";
import path from "node:path";
import { migrateConfig, migrateJSConfig } from "./migrate-config.js";
// @ts-ignore: No types available
import { Legacy } from "@eslint/eslintrc";

//-----------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions packages/migrate-config/src/migrate-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
//-----------------------------------------------------------------------------

import * as recast from "recast";
// @ts-ignore: No types available
import { Legacy } from "@eslint/eslintrc";
import camelCase from "camelcase";
import pluginsNeedingCompat from "./compat-plugins.js";
Expand Down