Comparing version 0.18.14 to 0.19.2
@@ -88,19 +88,21 @@ export type Platform = 'browser' | 'node' | 'neutral' | ||
/** Documentation: https://esbuild.github.io/api/#tsconfig-raw */ | ||
tsconfigRaw?: string | { | ||
compilerOptions?: { | ||
alwaysStrict?: boolean | ||
baseUrl?: boolean | ||
experimentalDecorators?: boolean | ||
importsNotUsedAsValues?: 'remove' | 'preserve' | 'error' | ||
jsx?: 'preserve' | 'react-native' | 'react' | 'react-jsx' | 'react-jsxdev' | ||
jsxFactory?: string | ||
jsxFragmentFactory?: string | ||
jsxImportSource?: string | ||
paths?: Record<string, string[]> | ||
preserveValueImports?: boolean | ||
strict?: boolean | ||
target?: string | ||
useDefineForClassFields?: boolean | ||
verbatimModuleSyntax?: boolean | ||
} | ||
tsconfigRaw?: string | TsconfigRaw | ||
} | ||
export interface TsconfigRaw { | ||
compilerOptions?: { | ||
alwaysStrict?: boolean | ||
baseUrl?: string | ||
experimentalDecorators?: boolean | ||
importsNotUsedAsValues?: 'remove' | 'preserve' | 'error' | ||
jsx?: 'preserve' | 'react-native' | 'react' | 'react-jsx' | 'react-jsxdev' | ||
jsxFactory?: string | ||
jsxFragmentFactory?: string | ||
jsxImportSource?: string | ||
paths?: Record<string, string[]> | ||
preserveValueImports?: boolean | ||
strict?: boolean | ||
target?: string | ||
useDefineForClassFields?: boolean | ||
verbatimModuleSyntax?: boolean | ||
} | ||
@@ -213,4 +215,4 @@ } | ||
path: string | ||
/** "text" as bytes */ | ||
contents: Uint8Array | ||
hash: string | ||
/** "contents" as text (changes automatically with "contents") */ | ||
@@ -243,2 +245,3 @@ readonly text: string | ||
certfile?: string | ||
fallback?: string | ||
onRequest?: (args: ServeOnRequestArgs) => void | ||
@@ -395,2 +398,3 @@ } | ||
| 'import-rule' | ||
| 'composes-from' | ||
| 'url-token' | ||
@@ -397,0 +401,0 @@ |
{ | ||
"name": "esbuild", | ||
"version": "0.18.14", | ||
"version": "0.19.2", | ||
"description": "An extremely fast JavaScript and CSS bundler and minifier.", | ||
@@ -18,26 +18,26 @@ "repository": "https://github.com/evanw/esbuild", | ||
"optionalDependencies": { | ||
"@esbuild/android-arm": "0.18.14", | ||
"@esbuild/android-arm64": "0.18.14", | ||
"@esbuild/android-x64": "0.18.14", | ||
"@esbuild/darwin-arm64": "0.18.14", | ||
"@esbuild/darwin-x64": "0.18.14", | ||
"@esbuild/freebsd-arm64": "0.18.14", | ||
"@esbuild/freebsd-x64": "0.18.14", | ||
"@esbuild/linux-arm": "0.18.14", | ||
"@esbuild/linux-arm64": "0.18.14", | ||
"@esbuild/linux-ia32": "0.18.14", | ||
"@esbuild/linux-loong64": "0.18.14", | ||
"@esbuild/linux-mips64el": "0.18.14", | ||
"@esbuild/linux-ppc64": "0.18.14", | ||
"@esbuild/linux-riscv64": "0.18.14", | ||
"@esbuild/linux-s390x": "0.18.14", | ||
"@esbuild/linux-x64": "0.18.14", | ||
"@esbuild/netbsd-x64": "0.18.14", | ||
"@esbuild/openbsd-x64": "0.18.14", | ||
"@esbuild/sunos-x64": "0.18.14", | ||
"@esbuild/win32-arm64": "0.18.14", | ||
"@esbuild/win32-ia32": "0.18.14", | ||
"@esbuild/win32-x64": "0.18.14" | ||
"@esbuild/android-arm": "0.19.2", | ||
"@esbuild/android-arm64": "0.19.2", | ||
"@esbuild/android-x64": "0.19.2", | ||
"@esbuild/darwin-arm64": "0.19.2", | ||
"@esbuild/darwin-x64": "0.19.2", | ||
"@esbuild/freebsd-arm64": "0.19.2", | ||
"@esbuild/freebsd-x64": "0.19.2", | ||
"@esbuild/linux-arm": "0.19.2", | ||
"@esbuild/linux-arm64": "0.19.2", | ||
"@esbuild/linux-ia32": "0.19.2", | ||
"@esbuild/linux-loong64": "0.19.2", | ||
"@esbuild/linux-mips64el": "0.19.2", | ||
"@esbuild/linux-ppc64": "0.19.2", | ||
"@esbuild/linux-riscv64": "0.19.2", | ||
"@esbuild/linux-s390x": "0.19.2", | ||
"@esbuild/linux-x64": "0.19.2", | ||
"@esbuild/netbsd-x64": "0.19.2", | ||
"@esbuild/openbsd-x64": "0.19.2", | ||
"@esbuild/sunos-x64": "0.19.2", | ||
"@esbuild/win32-arm64": "0.19.2", | ||
"@esbuild/win32-ia32": "0.19.2", | ||
"@esbuild/win32-x64": "0.19.2" | ||
}, | ||
"license": "MIT" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131511
3257