tsconfig.json 344 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2016",
  5. "strict": true,
  6. "noUnusedParameters": false,
  7. "noUnusedLocals": true,
  8. "outDir": "out",
  9. "sourceMap": true,
  10. "skipLibCheck": true,
  11. "declaration": true,
  12. "lib": [
  13. "esnext", // for #201187
  14. "dom"
  15. ]
  16. },
  17. "exclude": [
  18. "node_modules",
  19. "out",
  20. "tools"
  21. ]
  22. }