tsconfig.shared.json 695 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "incremental": true,
  5. "target": "ESnext",
  6. "module": "ESNext",
  7. "moduleResolution": "Bundler",
  8. "lib": ["dom", "ESnext"],
  9. "resolveJsonModule": true,
  10. "allowImportingTsExtensions": true,
  11. "allowJs": false,
  12. "declaration": true,
  13. "emitDeclarationOnly": true,
  14. "declarationMap": true,
  15. "jsx": "preserve",
  16. "jsxImportSource": "preact",
  17. "noImplicitAny": true,
  18. "noImplicitThis": true,
  19. "strictNullChecks": true,
  20. "verbatimModuleSyntax": true,
  21. "esModuleInterop": true,
  22. "allowSyntheticDefaultImports": true,
  23. "strictFunctionTypes": true,
  24. "forceConsistentCasingInFileNames": true
  25. }
  26. }