tsconfig.json 892 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "commonjs",
  5. "lib": ["ES2020"],
  6. "outDir": "./dist",
  7. "rootDir": "./src",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "resolveJsonModule": true,
  13. "declaration": true,
  14. "declarationMap": true,
  15. "sourceMap": true,
  16. "removeComments": true,
  17. "noImplicitAny": true,
  18. "strictNullChecks": true,
  19. "strictFunctionTypes": true,
  20. "noImplicitThis": true,
  21. "noImplicitReturns": true,
  22. "noFallthroughCasesInSwitch": true,
  23. "moduleResolution": "node",
  24. "baseUrl": "./",
  25. "paths": {
  26. "@/*": ["src/*"]
  27. },
  28. "allowSyntheticDefaultImports": true,
  29. "experimentalDecorators": true,
  30. "emitDecoratorMetadata": true
  31. },
  32. "include": [
  33. "src/**/*"
  34. ],
  35. "exclude": [
  36. "node_modules",
  37. "dist"
  38. ]
  39. }