Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1{
2 "extends": "../../tsconfig.json",
3 "compilerOptions": {
4 "baseUrl": ".",
5 "paths": {
6 "@server": ["./src/index.ts"],
7 "@server/*": ["./src/*"],
8 "@public/*": ["./public/*"],
9 "@wisp/*": ["../../packages/@wisp/*/src"]
10 }
11 },
12 "include": ["src/**/*", "public/**/*", "scripts/**/*"],
13 "exclude": ["node_modules"]
14}