24 lines
611 B
JSON
24 lines
611 B
JSON
{
|
|
// Visit https://aka.ms/tsconfig to read more about this file
|
|
"compilerOptions": {
|
|
// File Layout
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
|
|
// Environment Settings
|
|
// See also https://aka.ms/tsconfig/module
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "esnext",
|
|
"types": ["node"],
|
|
"verbatimModuleSyntax": false,
|
|
"isolatedModules": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"moduleDetection": "force",
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "prisma.config.ts"]
|
|
}
|