Library for authoring Zeichen plugins and themes.
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.

29 lines
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. }