31 lines
769 B
JSON
31 lines
769 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "es2020",
|
||
|
|
"lib": ["ESNext"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
/* Linting */
|
||
|
|
"strict": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./api", "./prisma"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"vite.config.ts",
|
||
|
|
"server.ts",
|
||
|
|
"api/**/*.ts",
|
||
|
|
"prisma.config.ts",
|
||
|
|
"prisma/generated/**/*.ts"
|
||
|
|
]
|
||
|
|
}
|