An atproto based writing game loosely inspired by Fiasco!
1{
2 "compilerOptions": {
3 "target": "ESNext",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "allowSyntheticDefaultImports": true,
7 "esModuleInterop": true,
8 "jsx": "preserve",
9 "jsxImportSource": "solid-js",
10 "allowJs": true,
11 "strict": true,
12 "noEmit": true,
13 "types": ["vinxi/types/client", "node"],
14 "isolatedModules": true,
15 "paths": {
16 "~/*": ["./src/*"],
17 "@/*": ["./drizzle/*"]
18 }
19 }
20}