tsconfig.json 259 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES2019",
  4. "module": "CommonJS",
  5. "lib": ["ES2019"],
  6. "types": ["node"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "outDir": "../dist-scripts"
  11. },
  12. "include": ["*.ts"]
  13. }