tsconfig.json 341 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "lib": ["ES2022", "DOM"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "forceConsistentCasingInFileNames": true,
  10. "skipLibCheck": true,
  11. "outDir": "dist",
  12. "rootDir": "src"
  13. },
  14. "include": ["src/**/*.ts"]
  15. }