Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
/nuxtPublic

feat(schema): add global tsconfig options#33795

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
Subham-KRLX wants to merge11 commits intonuxt:main
base:main
Choose a base branch
Loading
fromSubham-KRLX:fix/easier-global-tsconfig-options
Open
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
11 commits
Select commitHold shift + click to select a range
3e63c47
feat(schema): add global tsconfig options
danielroeNov 27, 2025
87eaf0b
Merge branch 'main' into fix/easier-global-tsconfig-options
Subham-KRLXDec 1, 2025
bb8518e
[autofix.ci] apply automated fixes
autofix-ci[bot]Dec 1, 2025
4e21e12
fix(kit): inherit global tsConfig in node and shared contexts
Subham-KRLXDec 1, 2025
b91dccf
fix(nitro): cast tsConfig to resolve type mismatch
Subham-KRLXDec 1, 2025
2a7131e
[autofix.ci] apply automated fixes
autofix-ci[bot]Dec 1, 2025
8aa005e
fix(schema): update tsconfig JSDoc and fix nitro-server type error
Subham-KRLXDec 1, 2025
a1a4d11
fix: address CodeRabbit feedback
Subham-KRLXDec 1, 2025
66e21b9
[autofix.ci] apply automated fixes
autofix-ci[bot]Dec 1, 2025
52f1464
Merge branch 'main' into fix/easier-global-tsconfig-options
Subham-KRLXDec 7, 2025
5c80102
Merge branch 'main' into fix/easier-global-tsconfig-options
Subham-KRLXDec 12, 2025
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
PrevPrevious commit
NextNext commit
fix: address CodeRabbit feedback
- Remove unused TSConfig import from nitro-server- Fix transpile callback typing to include isModern and isLegacy
  • Loading branch information
@Subham-KRLX
Subham-KRLX committedDec 1, 2025
commita1a4d11258b61e48b6552e370ac811e70ace4fff
2 changes: 1 addition & 1 deletionpackages/nitro-server/src/index.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -6,7 +6,7 @@ import { mkdir, readFile, writeFile } from 'node:fs/promises'
import { randomUUID } from 'node:crypto'
import type { Nuxt, NuxtOptions } from '@nuxt/schema'
import { join, relative, resolve } from 'pathe'
import {type TSConfig,readPackageJSON } from 'pkg-types'
import { readPackageJSON } from 'pkg-types'
import { createRouter as createRadixRouter, exportMatcher, toRouteMatcher } from 'radix3'
import { joinURL, withTrailingSlash } from 'ufo'
import { build, copyPublicAssets, createDevServer, createNitro, prepare, prerender, scanHandlers, writeTypes } from 'nitropack'
Expand Down
2 changes: 1 addition & 1 deletionpackages/schema/src/types/schema.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -460,7 +460,7 @@ export interface ConfigSchema {
* transpile: [({ isLegacy }) => isLegacy && 'ky']
* ```
*/
transpile: Array<string | RegExp | ((ctx: { isClient?: boolean, isServer?: boolean, isDev: boolean }) => string | RegExp | false)>
transpile: Array<string | RegExp | ((ctx: { isClient?: boolean, isServer?: boolean, isDev: boolean, isModern?: boolean, isLegacy?: boolean }) => string | RegExp | false)>

/**
* It is recommended to use `addTemplate` from `@nuxt/kit` instead of this option.
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp