a tool for shared writing and social publishing
1{
2 "compilerOptions": {
3 "lib": ["dom", "dom.iterable", "esnext"],
4 "types": ["@cloudflare/workers-types"],
5 "baseUrl": ".",
6 "allowJs": true,
7 "skipLibCheck": true,
8 "strict": true,
9 "noFallthroughCasesInSwitch": true,
10 "noEmit": true,
11 "incremental": true,
12 "module": "esnext",
13 "downlevelIteration": true,
14 "esModuleInterop": true,
15 "moduleResolution": "node",
16 "resolveJsonModule": true,
17 "isolatedModules": true,
18 "jsx": "preserve",
19 "plugins": [
20 {
21 "name": "next"
22 }
23 ],
24 "target": "ES2017"
25 },
26 "include": [
27 "my-types.d.ts",
28 "next-env.d.ts",
29 ".next/types/**/*.ts",
30 "**/*.js",
31 "**/*.ts",
32 "**/*.tsx",
33 "**/*.mdx"
34 ],
35 "exclude": ["node_modules"]
36}