tsconfig.json 501 B

1234567891011121314151617181920212223242526272829
  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. /* TOOD: remove below flags for strict checking */
  11. "noImplicitAny": false
  12. },
  13. "include": [
  14. "src"
  15. ],
  16. "exclude": [
  17. "node_modules",
  18. "config",
  19. "dist",
  20. "src/public/**",
  21. "**/*.test.ts"
  22. ],
  23. "ts-node": {
  24. "transpileOnly": true,
  25. "swc": true
  26. }
  27. }