2023-09-13 03:08:05 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-11-17 21:31:24 +00:00
|
|
|
"baseUrl": "./src",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./*"]
|
|
|
|
|
},
|
2025-06-24 15:51:34 +00:00
|
|
|
"rootDir": ".",
|
2023-09-13 03:08:05 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"lib": ["ES2022", "dom"],
|
|
|
|
|
"module": "Node16",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"noImplicitReturns": false,
|
|
|
|
|
"noImplicitThis": false,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"outDir": "build",
|
|
|
|
|
"skipLibCheck": false,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "ES2022"
|
|
|
|
|
},
|
2025-04-29 17:54:34 +00:00
|
|
|
"include": ["src", "migrations", "scripts"],
|
2025-03-13 10:32:40 +00:00
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2023-09-13 03:08:05 +00:00
|
|
|
}
|