tsconfig.json 301 B

123456789101112131415
  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. "strict": true,
  12. },
  13. "include": ["./src/**/*", "config.ts"]
  14. }