2026-07-16 06:19:58 -04:00
|
|
|
{
|
|
|
|
|
"extends": "../../tsconfig.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"plugins": [{ "name": "next" }],
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./*"],
|
|
|
|
|
"@project-e/shared": ["../../packages/shared/src"],
|
|
|
|
|
"@project-e/shared/*": ["../../packages/shared/src/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
2026-07-29 06:18:05 -04:00
|
|
|
"exclude": ["node_modules", "__tests__"]
|
2026-07-16 06:19:58 -04:00
|
|
|
}
|