tsconfig.json 253 B

1234567891011
  1. {
  2. "extends": "../../../tsconfig.base.json",
  3. "include": ["src"],
  4. "exclude": ["node_modules", "**/__tests__/*"],
  5. "compilerOptions": {
  6. "rootDir": "src/",
  7. "outDir": "./lib",
  8. "moduleResolution": "nodenext",
  9. "module": "nodenext"
  10. }
  11. }