tsconfig.json 553 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "module": "commonjs",
  5. "experimentalDecorators": true,
  6. "moduleResolution": "node",
  7. "lib": [
  8. "esnext",
  9. "esnext.asynciterable",
  10. "dom"
  11. ],
  12. "esModuleInterop": true,
  13. "allowJs": true,
  14. "sourceMap": true,
  15. "strict": true,
  16. "noEmit": true,
  17. "baseUrl": ".",
  18. "paths": {
  19. "~/*": [
  20. "./*"
  21. ],
  22. "@/*": [
  23. "./*"
  24. ]
  25. },
  26. },
  27. "exclude": [
  28. "node_modules"
  29. ]
  30. }