diff options
| author | MohamedBassem <me@mbassem.com> | 2024-02-04 23:30:32 +0000 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-02-04 23:30:32 +0000 |
| commit | fd256793f165595fdb078d9ab52f06d79e776fdd (patch) | |
| tree | 62c61f5d3da0a64b564d02bd42fd1038c5512e19 /tsconfig.json | |
| download | karakeep-fd256793f165595fdb078d9ab52f06d79e776fdd.tar.zst | |
Initial commit from Create Next App
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 00000000..e7ff90fd --- /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"] +} |
