tsconfig.json 684 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "allowSyntheticDefaultImports": true,
  9. "target": "ES2023",
  10. "sourceMap": true,
  11. "outDir": "./dist",
  12. "baseUrl": "./",
  13. "incremental": true,
  14. "skipLibCheck": true,
  15. "strictNullChecks": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "noImplicitAny": false,
  18. "strictBindCallApply": false,
  19. "noFallthroughCasesInSwitch": false,
  20. "paths": {
  21. "@app/common": [
  22. "libs/common/src"
  23. ],
  24. "@app/common/*": [
  25. "libs/common/src/*"
  26. ]
  27. }
  28. }
  29. }