38 lines
901 B
JSON
38 lines
901 B
JSON
{
|
|
"extends": "@workspace/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"allowImportingTsExtensions": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"paths": {
|
|
"@/.source": ["./.source-typed.ts"],
|
|
"@/*": ["./*"],
|
|
"@workspace/ui/*": ["../../packages/ui/src/*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
".source",
|
|
".source/**/*"
|
|
]
|
|
}
|