Files
gridpilot.gg/apps/website/tsconfig.json
2025-12-16 11:09:13 +01:00

39 lines
1.3 KiB
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"module": "esnext",
"moduleResolution": "bundler",
"baseUrl": ".",
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@/lib/*": ["./lib/*"],
"@/components/*": ["./components/*"],
"@/app/*": ["./app/*"],
"@core/identity": ["../../core/identity/index.ts"],
"@core/identity/*": ["../../core/identity/*"],
"@core/racing": ["../../core/racing/index.ts"],
"@core/racing/*": ["../../core/racing/*"],
"@core/social": ["../../core/social/index.ts"],
"@core/social/*": ["../../core/social/*"],
"@core/testing-support": ["../../core/testing-support/index.ts"],
"@core/testing-support/*": ["../../core/testing-support/*"],
"@core/media": ["../../core/media/index.ts"],
"@core/media/*": ["../../core/media/*"],
"@core/shared/logging": ["../../core/shared/logging"],
"@core/shared/*": ["../../core/shared/*"],
"@core/core/*": ["../../core/*"],
"@core/api/*": ["../../apps/api/src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", ".next"]
}