42 lines
1.7 KiB
JSON
42 lines
1.7 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": ["../../packages/identity/index.ts"],
|
|
"@gridpilot/identity/*": ["../../packages/identity/*"],
|
|
"@gridpilot/racing": ["../../packages/racing/index.ts"],
|
|
"@gridpilot/racing/*": ["../../packages/racing/*"],
|
|
"@gridpilot/social": ["../../packages/social/index.ts"],
|
|
"@gridpilot/social/*": ["../../packages/social/*"],
|
|
"@gridpilot/testing-support": ["../../packages/testing-support/index.ts"],
|
|
"@gridpilot/testing-support/*": ["../../packages/testing-support/*"],
|
|
"@gridpilot/media": ["../../packages/media/index.ts"],
|
|
"@gridpilot/media/*": ["../../packages/media/*"],
|
|
"@gridpilot/shared": ["../../packages/shared/index.ts"],
|
|
"@gridpilot/shared/application": ["../../packages/shared/application"],
|
|
"@gridpilot/shared/application/*": ["../../packages/shared/application/*"],
|
|
"@gridpilot/shared/presentation": ["../../packages/shared/presentation"],
|
|
"@gridpilot/shared/presentation/*": ["../../packages/shared/presentation/*"],
|
|
"@gridpilot/shared/domain": ["../../packages/shared/domain"],
|
|
"@gridpilot/shared/errors": ["../../packages/shared/errors"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules", ".next"]
|
|
} |