tsconfig.json 611 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "ESNext",
  5. "moduleResolution": "Node",
  6. "lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
  7. "esModuleInterop": true,
  8. "strict": true,
  9. "paths": {
  10. "~/*": ["./src/*"],
  11. "@/*": ["./src/*"]
  12. },
  13. "types": [
  14. "@types/node",
  15. "@types/jest",
  16. "@relmify/jest-fp-ts"
  17. ],
  18. "outDir": "./lib/",
  19. "rootDir": "./src/",
  20. "declaration": true,
  21. "declarationMap": true,
  22. "sourceMap": true
  23. },
  24. "include": ["./src", "./src/global.d.ts"],
  25. "exclude": ["node_modules", "./src/__tests__", "./src/demo.ts"]
  26. }