diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-05-29 21:33:44 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-05-29 21:33:44 -0400 |
| commit | 4afdb7370dcc8df71c648eb76a7e126cb888e65c (patch) | |
| tree | 70d90bf64f5efb19997f115ee6d9317005c34473 /tsconfig.json | |
| download | alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.gz alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.tar.bz2 alure-post-4afdb7370dcc8df71c648eb76a7e126cb888e65c.zip | |
Initial commit from Create Next App
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..c133409 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "compilerOptions": { + "target": "ES2017", + "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": { + "@/*": ["./src/*"] + } + }, + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} |
