tsconfig.json 522 B

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