tsconfig.json 318 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "lib": ["ES2020"],
  4. "target": "es5",
  5. "module": "commonjs",
  6. "declaration": true,
  7. "declarationMap": true,
  8. "sourceMap": true,
  9. "rootDir": "./",
  10. "strict": true,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": true
  14. }
  15. }