Files
mb-grid-solutions.com/tsconfig.json
Marc Mintel 5043058660
Some checks failed
🚀 Build & Deploy / 🔍 Prepare (push) Successful in 4s
🚀 Build & Deploy / 🧪 QA (push) Failing after 52s
🚀 Build & Deploy / 🏗️ Build (push) Failing after 13m25s
🚀 Build & Deploy / 🚀 Deploy (push) Has been skipped
🚀 Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
🚀 Build & Deploy / 🔔 Notify (push) Successful in 2s
fix: exclude scripts from tsconfig compilation and fix msg type to resolve pipeline build error
2026-04-22 10:27:26 +02:00

19 lines
393 B
JSON

{
"extends": "@mintel/tsconfig/nextjs.json",
"compilerOptions": {
"strict": true,
"paths": {
"@/*": ["./*"],
"@payload-config": ["./src/payload/payload.config.ts"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "tests", "tests_bak", "scripts"]
}