A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.
1{
2 "compilerOptions": {
3 "composite": true,
4 "target": "ES2020",
5 "module": "ESNext",
6 "lib": ["ES2020", "DOM", "DOM.Iterable"],
7 "moduleResolution": "bundler",
8 "moduleDetection": "force",
9 "jsx": "react-jsx",
10 "strict": true,
11 "skipLibCheck": true,
12 "allowSyntheticDefaultImports": true,
13 "esModuleInterop": true,
14 "resolveJsonModule": true,
15 "declaration": true,
16 "declarationMap": true,
17 "emitDeclarationOnly": true,
18 "sourceMap": false,
19 "outDir": "./lib-dist",
20 "rootDir": "./lib"
21 },
22 "include": ["lib/**/*.ts", "lib/**/*.tsx"]
23}