Create your Link in Bio for Bluesky
1{
2 "include": [
3 "**/*.ts",
4 "**/*.tsx",
5 "**/.server/**/*.ts",
6 "**/.server/**/*.tsx",
7 "**/.client/**/*.ts",
8 "**/.client/**/*.tsx",
9 ".react-router/types/**/*"
10 ],
11 "exclude": ["atproto"],
12 "compilerOptions": {
13 "lib": ["DOM", "DOM.Iterable", "ES2022"],
14 "types": [
15 "@react-router/node",
16 "vite/client",
17 "vitest/globals",
18 "vitest-environment-vprisma",
19 "@types/umami"
20 ],
21 "isolatedModules": true,
22 "esModuleInterop": true,
23 "jsx": "react-jsx",
24 "module": "ESNext",
25 "moduleResolution": "Bundler",
26 "resolveJsonModule": true,
27 "target": "ES2022",
28 "strict": true,
29 "allowJs": true,
30 "skipLibCheck": true,
31 "forceConsistentCasingInFileNames": true,
32 "baseUrl": ".",
33 "noUncheckedIndexedAccess": true,
34 "paths": {
35 "~/*": ["./app/*"]
36 },
37 "noEmit": true,
38 "rootDirs": [".", "./.react-router/types"]
39 }
40}