8000 Merge pull request #14662 from getsentry/sig/nitro-internal-module · antonis/sentry-javascript@bda4dc3 · GitHub
[go: up one dir, main page]

Skip to content

Commit bda4dc3

Browse files
authored
Merge pull request getsentry#14662 from getsentry/sig/nitro-internal-module
fixes getsentry#14661
2 parents 72239ee + c54b84d commit bda4dc3

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

packages/nuxt/build.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { defineBuildConfig } from 'unbuild';
2+
3+
// Build Config for the Nuxt Module Builder: https://github.com/nuxt/module-builder
4+
export default defineBuildConfig({
5+
// The devDependency "@sentry-internal/nitro-utils" triggers "Inlined implicit external", but it's not external
6+
failOnWarn: false,
7+
});

packages/nuxt/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../../tsconfig.json",
33

4-
"include": ["src/**/*"],
4+
"include": ["src/**/*", "build.config.ts"],
55

66
"compilerOptions": {
77
// package-specific options

0 commit comments

Comments
 (0)
0