tsconfig.json 358 B

123456789101112131415
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig.json",
  3. "compilerOptions": {
  4. "target": "ES2022",
  5. "rootDir": "src",
  6. "outDir": "dist",
  7. "module": "nodenext",
  8. "declaration": true,
  9. "moduleResolution": "nodenext",
  10. "lib": ["es2022", "dom", "dom.iterable"],
  11. "strict": true,
  12. "skipLibCheck": true
  13. },
  14. "include": ["src"]
  15. }