CLI for Orbis.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 строки
494 B

  1. {
  2. "exclude": ["node_modules"],
  3. "include": ["src", "types"],
  4. "compilerOptions": {
  5. "module": "ESNext",
  6. "lib": ["ESNext"],
  7. "importHelpers": true,
  8. "declaration": true,
  9. "sourceMap": true,
  10. "rootDir": "./src",
  11. "strict": true,
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noImplicitReturns": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "moduleResolution": "node",
  17. "jsx": "react",
  18. "esModuleInterop": true,
  19. "target": "ES2017"
  20. }
  21. }