[READ-ONLY] 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
nextjs
731 B
35 lines
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "lib": ["dom", "dom.iterable", "esnext", "ES2022"],
5 "allowJs": true,
6 "strict": true,
7 "skipLibCheck": true,
8 "noEmit": true,
9 "esModuleInterop": true,
10 "module": "esnext",
11 "moduleResolution": "bundler",
12 "resolveJsonModule": true,
13 "isolatedModules": true,
14 "jsx": "react-jsx",
15 "incremental": true,
16 "noImplicitReturns": true,
17 "noFallthroughCasesInSwitch": true,
18 "plugins": [
19 {
20 "name": "next"
21 }
22 ],
23 "paths": {
24 "@/*": ["./*"]
25 }
26 },
27 "include": [
28 "next-env.d.ts",
29 "**/*.ts",
30 "**/*.tsx",
31 ".next/types/**/*.ts",
32 ".next/dev/types/**/*.ts"
33 ],
34 "exclude": ["node_modules"]
35}