migrations fix

This commit is contained in:
2025-09-18 17:00:48 +09:00
parent e907dffe8c
commit 0566901fa4
5 changed files with 475 additions and 2 deletions

View File

@@ -18,9 +18,15 @@ cat > migrations/tsconfig.json << EOL
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"outDir": "../temp_migrations"
"strict": false,
"outDir": "../temp_migrations",
"baseUrl": "..",
"paths": {
"*": ["node_modules/*"]
}
},
"include": ["./*.ts"]
}