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

20 строки
446 B

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