tsconfig.json 325 B

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