Fix tsconfig rootDir for correct dist output paths #41

Merged
ghost merged 3 commits from fix/docker-ts-build into main 2026-03-18 01:52:26 +00:00
2 changed files with 5 additions and 3 deletions
+3 -2
View File
@@ -6,7 +6,8 @@
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"outDir": "./dist"
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src", "drizzle.config.ts"]
"include": ["src"]
}
+2 -1
View File
@@ -6,7 +6,8 @@
"strict": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
"outDir": "./dist"
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src"]
}