tsconfig.shared.json 662 B

12345678910111213141516171819202122232425
  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. "noImplicitAny": true,
  17. "noImplicitThis": true,
  18. "strictNullChecks": true,
  19. "verbatimModuleSyntax": true,
  20. "esModuleInterop": true,
  21. "allowSyntheticDefaultImports": true,
  22. "strictFunctionTypes": true,
  23. "forceConsistentCasingInFileNames": true
  24. }
  25. }