tsconfig.json 348 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "lib": [ "dom","esnext","esnext.asynciterable"],
  5. "target": "es6",
  6. "experimentalDecorators": true,
  7. "skipLibCheck": true,
  8. "downlevelIteration": true
  9. },
  10. "exclude": [
  11. "node_modules",
  12. "library",
  13. "local",
  14. "temp",
  15. "build",
  16. "settings"
  17. ]
  18. }