41 lines
873 B
JSON
41 lines
873 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "ES2022"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"moduleDetection": "force",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": false,
|
|
"baseUrl": ".",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"~/*": ["./src/*"],
|
|
"@/db": ["./generated/prisma/client"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"cloudflare-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.cjs",
|
|
"**/*.js",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "generated", "dist"]
|
|
}
|