Skip to content

Commit bda4dc3

Browse files
authored
Merge pull request #14662 from getsentry/sig/nitro-internal-module
fixes #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

+7
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

+1-1
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)