forked from
esb.lol/alf
Bluesky's "Application Layout Framework"
1{
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "compilerOptions": {
4 "strict": true,
5 "skipLibCheck": true,
6 "allowSyntheticDefaultImports": true,
7 "esModuleInterop": true,
8 "moduleResolution": "node",
9 "resolveJsonModule": true,
10 "noErrorTruncation": true,
11 "declaration": true,
12 "declarationMap": true,
13 "sourceMap": true,
14 "jsx": "react-jsx",
15 "module": "CommonJS",
16 "target": "ES2020",
17 "lib": ["ES2023", "DOM", "DOM.Iterable"],
18 "outDir": "./dist"
19 },
20 "include": ["src"],
21 "exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
22}