tsconfig.json 599 B

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