tsconfig.json 280 B

1234567891011121314
  1. {
  2. "extends": "@apify/tsconfig",
  3. "compilerOptions": {
  4. "module": "ES2022",
  5. "target": "ES2022",
  6. "outDir": "dist",
  7. "resolveJsonModule": true,
  8. "noUnusedLocals": false,
  9. "skipLibCheck": true,
  10. "lib": ["DOM"]
  11. },
  12. "include": ["./src/**/*", "config.ts"]
  13. }