Files
e-tib.com/tsconfig.json
Marc Mintel d14122005d Initial commit: E-TIB production hardening & E2E foundation
Former-commit-id: ef04fca3d76375630c05aac117bf586953f3b657
2026-04-28 19:11:38 +02:00

23 lines
518 B
JSON

{
"extends": "@mintel/tsconfig/nextjs.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"lib/*": ["./lib/*"],
"components/*": ["./components/*"],
"data/*": ["./data/*"],
"@payload-config": ["./payload.config.ts"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"tests/**/*.test.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "scripts", "reference", "data", "remotion"]
}