diff options
| author | Yuval Adam <_@yuv.al> | 2024-09-21 13:15:44 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-09-21 15:13:25 +0200 |
| commit | 65e7041a3c88a5b2d1ae76e7023807537775cb1b (patch) | |
| tree | c21fe6cc3f137e2f0c13c0c184f9f59581a6639a /tsconfig.json | |
| parent | 6ed566ac4f30e1aa8b7a817c22912c50ee136f86 (diff) | |
Initial NextJS project creation with basic structure
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e7ff90f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "strict": true, + "noEmit": true, + "esModuleInterop": true, + "module": "esnext", + "moduleResolution": "bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} |
