File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed
packages/migrate-config/src Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 7070 npm install
7171 npm run build
7272
73+ - name : Run TypeScript Compiler
74+ run : npx tsc
75+
7376 - name : Test types (core)
7477 working-directory : packages/core
7578 run : |
Original file line number Diff line number Diff line change 1313 "fmt" : " prettier --write ." ,
1414 "fmt:check" : " prettier --check ." ,
1515 "test:jsr" : " npm run test:jsr --workspaces --if-present" ,
16- "test:types" : " tsc"
16+ "test:types" : " tsc && npm run test:types --workspaces --if-present "
1717 },
1818 "workspaces" : [
1919 " packages/*"
Original file line number Diff line number Diff line change 2323import fsp from "node:fs/promises" ;
2424import path from "node:path" ;
2525import { migrateConfig , migrateJSConfig } from "./migrate-config.js" ;
26+ // @ts -ignore: No types available
2627import { Legacy } from "@eslint/eslintrc" ;
2728
2829//-----------------------------------------------------------------------------
Original file line number Diff line number Diff line change 88//-----------------------------------------------------------------------------
99
1010import * as recast from "recast" ;
11+ // @ts -ignore: No types available
1112import { Legacy } from "@eslint/eslintrc" ;
1213import camelCase from "camelcase" ;
1314import pluginsNeedingCompat from "./compat-plugins.js" ;
You can’t perform that action at this time.
0 commit comments