65 lines
1.3 KiB
JSON
65 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"incremental": true,
|
|
"moduleDetection": "force",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"emitDecoratorMetadata": true,
|
|
"downlevelIteration": false,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"useDefineForClassFields": false,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"newLine": "LF",
|
|
"skipLibCheck": true,
|
|
"noResolve": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"isolatedModules": true,
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"target": "esnext",
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"next.config.ts",
|
|
"prisma.config.ts",
|
|
"prisma/seed.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".next",
|
|
"dist"
|
|
]
|
|
}
|