80ac63edf0
## Current Behavior The nx repo's own dev tooling is on nx 23.0.0-rc.4. ## Expected Behavior Migrated the workspace tooling to nx 23.1.0-beta.4. Bumps nx + `@nx/*` rc.4 -> beta.4 and TypeScript to 6, and applies the prescribed migrations: - `add-ignore-deprecations-for-ts6` (adds `ignoreDeprecations: "6.0"` to 10 tsconfigs carrying deprecated options; valid on TS 6) - bump `dev.nx.gradle.project-graph` to 0.1.23 The `set-ts-jest-isolated-modules` migration was a no-op (no ts-jest spec configs), so there is no isolatedModules fallout. The `convert-to-flat-config` lint-reconciliation prompt is deferred (workspace is already flat). ## Related Issue(s) NXC-4591 <!-- polygraph-session-start --> --- [View session information ↗](https://app.trypolygraph.com/orgs/6a061dcb561c062131116eca/sessions/nx-23.1.0-beta.0-Migration-24e91166) <!-- polygraph-session-end -->
24 lines
619 B
JSON
24 lines
619 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2021",
|
|
"importHelpers": true,
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "jest"],
|
|
"typeRoots": ["./node_modules/@types", "./node_modules"],
|
|
"lib": ["ES2022"],
|
|
"declaration": true,
|
|
"resolveJsonModule": true,
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"composite": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUncheckedSideEffectImports": false
|
|
}
|
|
}
|