diff options
| author | Yuval Adam <_@yuv.al> | 2024-09-23 10:29:53 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-09-23 10:29:53 +0200 |
| commit | 8a6ff5a2c15422badf0bc9c8166787dc23a71072 (patch) | |
| tree | da45cc6fc598520102260da87c3733107ef4e980 /tsconfig.json | |
| parent | 51370d591d4f2ac4eddd8b2ea2f9c5118fbf9ab1 (diff) | |
Move all geshem/ files to root
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/tsconfig.json b/tsconfig.json index a273b0c..e7ff90f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,26 @@ { "compilerOptions": { - "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, "strict": true, - "forceConsistentCasingInFileNames": true, - "noFallthroughCasesInSwitch": true, + "noEmit": true, + "esModuleInterop": true, "module": "esnext", - "moduleResolution": "node", + "moduleResolution": "bundler", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true, - "jsx": "react-jsx" + "jsx": "preserve", + "incremental": true, + "plugins": [ + { + "name": "next" + } + ], + "paths": { + "@/*": ["./*"] + } }, - "include": [ - "src" - ] + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] } |
