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

29 строки
547 B

  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "module": "esnext",
  14. "moduleResolution": "node",
  15. "declaration": true,
  16. "declarationDir": "./dist",
  17. "emitDeclarationOnly": true,
  18. "sourceMap": true,
  19. "strict": false
  20. },
  21. "exclude": [
  22. "node_modules",
  23. "**/*.test.ts"
  24. ],
  25. "include": [
  26. "**/*.ts"
  27. ]
  28. }