One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: update tsconfig

authored by

Evan Huang and committed by
GitHub
70da6124 a5a1a504

+6 -1
+6 -1
tsconfig.json
··· 3 3 "target": "ES2022", 4 4 "lib": ["dom", "dom.iterable", "esnext", "ES2022"], 5 5 "allowJs": true, 6 - "skipLibCheck": true, 7 6 "strict": true, 8 7 "noEmit": true, 9 8 "esModuleInterop": true, ··· 13 12 "isolatedModules": true, 14 13 "jsx": "react-jsx", 15 14 "incremental": true, 15 + "noUncheckedIndexedAccess": true, 16 + "exactOptionalPropertyTypes": true, 17 + "noImplicitReturns": true, 18 + "noFallthroughCasesInSwitch": true, 19 + "noUnusedLocals": true, 20 + "noUnusedParameters": true, 16 21 "plugins": [ 17 22 { 18 23 "name": "next"