tsconfig.json 591 B

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