tsconfig.shared.json 616 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "incremental": true,
  5. "target": "ESnext",
  6. "module": "preserve",
  7. "lib": ["dom", "ESnext"],
  8. "resolveJsonModule": true,
  9. "useUnknownInCatchVariables": false,
  10. "allowImportingTsExtensions": true,
  11. "allowJs": false,
  12. "declaration": true,
  13. "emitDeclarationOnly": true,
  14. "declarationMap": true,
  15. "jsx": "react-jsx",
  16. "jsxImportSource": "preact",
  17. "noImplicitAny": true,
  18. "noImplicitThis": true,
  19. "strict": true,
  20. "verbatimModuleSyntax": true,
  21. "forceConsistentCasingInFileNames": true,
  22. "skipLibCheck": true
  23. }
  24. }