tsconfig.json 417 B

1234567891011121314151617181920212223242526
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "baseUrl": ".",
  7. "paths": {
  8. "~/*": ["./src/*"]
  9. }
  10. },
  11. "include": [
  12. "src"
  13. ],
  14. "exclude": [
  15. "node_modules",
  16. "config",
  17. "dist",
  18. "src/public/**",
  19. "**/*.test.ts"
  20. ],
  21. "ts-node": {
  22. "transpileOnly": true,
  23. "swc": true
  24. }
  25. }