39 lines
1.4 KiB
JSON
39 lines
1.4 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/*"],
|
|
"@gridpilot/identity": ["../../core/identity/index.ts"],
|
|
"@gridpilot/identity/*": ["../../core/identity/*"],
|
|
"@gridpilot/racing": ["../../core/racing/index.ts"],
|
|
"@gridpilot/racing/*": ["../../core/racing/*"],
|
|
"@gridpilot/social": ["../../core/social/index.ts"],
|
|
"@gridpilot/social/*": ["../../core/social/*"],
|
|
"@gridpilot/testing-support": ["../../core/testing-support/index.ts"],
|
|
"@gridpilot/testing-support/*": ["../../core/testing-support/*"],
|
|
"@gridpilot/media": ["../../core/media/index.ts"],
|
|
"@gridpilot/media/*": ["../../core/media/*"],
|
|
"@gridpilot/shared/logging": ["../../core/shared/logging"],
|
|
"@gridpilot/shared/*": ["../../core/shared/*"],
|
|
"@gridpilot/core/*": ["../../core/*"],
|
|
"@gridpilot/api/*": ["../../apps/api/src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", ".next"]
|
|
} |