A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
1{
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "ES2022",
5 "useDefineForClassFields": true,
6 "lib": ["ES2022", "DOM", "DOM.Iterable"],
7 "module": "ESNext",
8 "types": ["vite/client"],
9 "skipLibCheck": true,
10
11 /* Bundler mode */
12 "moduleResolution": "bundler",
13 "allowImportingTsExtensions": true,
14 "verbatimModuleSyntax": true,
15 "moduleDetection": "force",
16 "noEmit": true,
17 "emitDeclarationOnly": true,
18 "declaration": true,
19 "declarationDir": "dist-lib",
20 "jsx": "react-jsx",
21
22 /* Linting */
23 "strict": true,
24 "noUnusedLocals": true,
25 "noUnusedParameters": true,
26 "erasableSyntaxOnly": true,
27 "noFallthroughCasesInSwitch": true,
28 "noUncheckedSideEffectImports": true
29 },
30 "include": ["src"]
31}