- changed from npm to pnpm in Dockerfile => improved install time
Fixed errors from change in .ts files.
29 lines
660 B
JSON
29 lines
660 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"newLine": "lf",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"noUnusedLocals": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext"],
|
|
"paths": {
|
|
"@shared/database": ["@shared/src/database"],
|
|
"@shared/uuid": ["@shared/src/uuid"]
|
|
}
|
|
}
|
|
}
|