62 lines
1.6 KiB
JSON
62 lines
1.6 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/*"],
|
|
"next/font": ["./node_modules/next/font/index.d.ts"],
|
|
"next/font/local": ["./node_modules/next/font/local/index.d.ts"],
|
|
"next/font/google": ["./node_modules/next/font/google/index.d.ts"],
|
|
"next/*": ["./node_modules/next/*.d.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"next.config.ts",
|
|
"prisma.config.ts",
|
|
"prisma/seed.ts",
|
|
"next-shim.d.ts",
|
|
"scripts/**/*.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
"reset.d.ts"
|
|
],
|
|
"exclude": ["node_modules", ".next", "dist"]
|
|
}
|