tsconfig.json 298 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "NodeNext",
  5. "moduleResolution": "NodeNext",
  6. "outDir": ".",
  7. "rootDir": ".",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true
  11. },
  12. "include": ["handler.ts"],
  13. "exclude": ["node_modules", "dist"]
  14. }