22 lines
489 B
JSON
22 lines
489 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"packages/**/*.ts",
|
|
"apps/**/*.ts",
|
|
"prisma/**/*.ts",
|
|
"tests/**/*.ts"
|
|
]
|
|
}
|