23 lines
442 B
JSON
23 lines
442 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2023",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"rootDir": "./",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*",
|
||
|
|
"prisma/**/*"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist",
|
||
|
|
"build",
|
||
|
|
"generated/prisma"
|
||
|
|
]
|
||
|
|
}
|