diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-30 23:14:14 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-30 23:14:14 -0700 |
| commit | 7a0a37568a0c5726d25ebf807d8d05c0e4faa74c (patch) | |
| tree | 718972faa1e45656861249c01c850a9adb697173 /middleware/tsconfig.json | |
| parent | ce903edb37d9c11ff1e983fbf1015cd95af31140 (diff) | |
add opengraph middleware
Diffstat (limited to 'middleware/tsconfig.json')
| -rw-r--r-- | middleware/tsconfig.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/middleware/tsconfig.json b/middleware/tsconfig.json new file mode 100644 index 0000000..6a9c1a2 --- /dev/null +++ b/middleware/tsconfig.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} |
