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