forked from
samuel.fm/statusphere-react
the statusphere demo reworked into a vite/react app in a monorepo
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "useDefineForClassFields": true,
5 "lib": ["ES2020", "DOM", "DOM.Iterable"],
6 "module": "ESNext",
7 "skipLibCheck": true,
8 "moduleResolution": "bundler",
9 "allowImportingTsExtensions": true,
10 "resolveJsonModule": true,
11 "isolatedModules": true,
12 "noEmit": true,
13 "jsx": "react-jsx",
14 "strict": true,
15 "noUnusedLocals": true,
16 "noUnusedParameters": true,
17 "noFallthroughCasesInSwitch": true,
18 "baseUrl": ".",
19 "paths": {
20 "#/*": ["./src/*"]
21 }
22 },
23 "include": ["src"],
24 "references": [{ "path": "./tsconfig.node.json" }]
25}