Skip to content

Commit

Permalink
Merge pull request #14662 from getsentry/sig/nitro-internal-module
Browse files Browse the repository at this point in the history
fixes #14661
  • Loading branch information
s1gr1d authored Dec 11, 2024
2 parents 72239ee + c54b84d commit bda4dc3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions packages/nuxt/build.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { defineBuildConfig } from 'unbuild';

// Build Config for the Nuxt Module Builder: https://github.com/nuxt/module-builder
export default defineBuildConfig({
// The devDependency "@sentry-internal/nitro-utils" triggers "Inlined implicit external", but it's not external
failOnWarn: false,
});
2 changes: 1 addition & 1 deletion packages/nuxt/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",

"include": ["src/**/*"],
"include": ["src/**/*", "build.config.ts"],

"compilerOptions": {
// package-specific options
Expand Down

0 comments on commit bda4dc3

Please sign in to comment.