An ebook/comic library service and web client
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.

40 lines
690 B

  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "experimentalDecorators": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "types": [
  15. "node",
  16. "jest"
  17. ],
  18. "paths": {
  19. "@/*": [
  20. "src/*"
  21. ]
  22. },
  23. "lib": [
  24. "esnext",
  25. "dom",
  26. "dom.iterable",
  27. "scripthost"
  28. ]
  29. },
  30. "include": [
  31. "src/**/*.ts",
  32. "src/**/*.tsx",
  33. "src/**/*.vue",
  34. "tests/**/*.ts",
  35. "tests/**/*.tsx"
  36. ],
  37. "exclude": [
  38. "node_modules"
  39. ]
  40. }