tsconfig.json 622 B

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