fix build

This commit is contained in:
wass08
2026-02-05 09:59:21 +09:00
parent a6c9bd6507
commit 264db13390
4 changed files with 16 additions and 4 deletions
+1
View File
@@ -26,6 +26,7 @@ coverage
out/ out/
build build
dist dist
*.tsbuildinfo
# Debug # Debug
+5 -1
View File
@@ -17,5 +17,9 @@
"next.config.js", "next.config.js",
".next/types/**/*.ts" ".next/types/**/*.ts"
], ],
"exclude": ["node_modules"] "exclude": ["node_modules"],
"references": [
{ "path": "../../packages/core" },
{ "path": "../../packages/viewer" }
]
} }
+3 -1
View File
@@ -2,7 +2,9 @@
"extends": "@repo/typescript-config/react-library.json", "extends": "@repo/typescript-config/react-library.json",
"compilerOptions": { "compilerOptions": {
"outDir": "dist", "outDir": "dist",
"rootDir": "src" "rootDir": "src",
"composite": true,
"incremental": true
}, },
"include": ["src"], "include": ["src"],
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"]
+7 -2
View File
@@ -2,8 +2,13 @@
"extends": "@repo/typescript-config/react-library.json", "extends": "@repo/typescript-config/react-library.json",
"compilerOptions": { "compilerOptions": {
"outDir": "dist", "outDir": "dist",
"rootDir": "src" "rootDir": "src",
"composite": true,
"incremental": true
}, },
"include": ["src"], "include": ["src"],
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"],
"references": [
{ "path": "../core" }
]
} }