tsconfig.json 468 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "checkJs": true,
  5. "target": "esnext",
  6. "module": "commonjs",
  7. "moduleResolution": "node",
  8. "strict": true,
  9. "importHelpers": true,
  10. "noImplicitAny": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "sourceMap": true,
  14. "declaration": true,
  15. "lib": ["esnext", "dom"],
  16. "outDir": "./dist",
  17. "baseUrl": ".",
  18. "paths": {
  19. "~/*": ["./*"]
  20. }
  21. },
  22. "exclude": [
  23. "dist", "node_modules"
  24. ]
  25. }