Assist_Design/apps/portal/tsconfig.json

32 lines
547 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.json",
"compilerOptions": {
// Next.js requirements
"jsx": "preserve",
"noEmit": true,
"plugins": [
{
"name": "next"
}
],
// Path mappings
"paths": {
"@/*": [
"./src/*"
]
},
// Enforce TS-only in portal and keep strict mode explicit (inherits from root)
"allowJs": false,
"strict": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}