forked from
nekomimi.pet/wisp.place-monorepo
Monorepo for Wisp.place. A static site hosting service built on top of the AT Protocol.
1{
2 "compilerOptions": {
3 /* Base Options */
4 "esModuleInterop": true,
5 "skipLibCheck": true,
6 "target": "es2022",
7 "allowJs": true,
8 "resolveJsonModule": true,
9 "moduleDetection": "force",
10 "isolatedModules": true,
11 "verbatimModuleSyntax": true,
12
13 /* Strictness */
14 "strict": true,
15 "noUncheckedIndexedAccess": true,
16 "noImplicitOverride": true,
17 "forceConsistentCasingInFileNames": true,
18
19 /* Transpiling with TypeScript */
20 "module": "ESNext",
21 "moduleResolution": "bundler",
22 "outDir": "dist",
23 "sourceMap": true,
24
25 /* Code doesn't run in DOM */
26 "lib": ["es2022"],
27 }
28}