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 "noEmit": true,
16 "emitDeclarationOnly": true,
17 "declaration": true,
18 "declarationDir": "dist-lib",
19 "sourceMap": true,
20 "outDir": "./lib-dist",
21 "rootDir": "./lib"
22 },
23 "include": ["lib/**/*.ts", "lib/**/*.tsx"]
24}