ft_transcendence/src/tsconfig.base.json
Maieul BOYER 5f9fd5629c feat(infra): reworked Dockerfile
- changed from npm to pnpm in Dockerfile => improved install time
    Fixed errors from change in .ts files.
2025-08-03 14:40:48 +02:00

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"]
}
}
}