tsconfig.json 617 B

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