social components
inlay.at
atproto
components
sdui
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "lib": ["dom", "dom.iterable", "esnext"],
5 "allowJs": true,
6 "skipLibCheck": true,
7 "strict": true,
8 "noEmit": true,
9 "allowImportingTsExtensions": true,
10 "esModuleInterop": true,
11 "module": "esnext",
12 "moduleResolution": "bundler",
13 "resolveJsonModule": true,
14 "isolatedModules": true,
15 "jsx": "react-jsx",
16 "incremental": true,
17 "plugins": [
18 {
19 "name": "next"
20 }
21 ],
22 "paths": {
23 "@/*": ["./*"],
24 "@inlay-at/db": ["./db/src"]
25 }
26 },
27 "include": [
28 "next-env.d.ts",
29 "**/*.ts",
30 "**/*.tsx",
31 ".next/types/**/*.ts",
32 ".next/dev/types/**/*.ts"
33 ],
34 "exclude": ["node_modules", "val", "proto"]
35}