tis-cli前端项目快速搭建命令行工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
762 B

4 years ago
  1. {
  2. "compilerOptions": {
  3. "incremental": true,
  4. "removeComments": true,
  5. "preserveConstEnums": true,
  6. "sourceMap": true,
  7. "strict": true,
  8. "noImplicitReturns": true,
  9. "moduleResolution": "node",
  10. "stripInternal": true,
  11. "noEmit": true,
  12. "lib": [
  13. "esnext",
  14. "dom"
  15. ],
  16. "target": "esnext",
  17. "baseUrl": ".",
  18. "paths": {
  19. "rxjs": ["./src/index"],
  20. "rxjs/operators": ["./src/operators/index"],
  21. "rxjs/testing": ["./src/testing/index"],
  22. "rxjs/ajax": ["./src/ajax/index"],
  23. "rxjs/webSocket": ["./src/webSocket/index"],
  24. "rxjs/fetch": ["./src/fetch/index"],
  25. "rxjs/internal/*": ["./src/internal/*"]
  26. }
  27. },
  28. "bazelOptions": {
  29. "suppressTsconfigOverrideWarnings": true
  30. }
  31. }