aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorAndrew Lee <andrew@alee14.me>2025-05-29 21:33:44 -0400
committerAndrew Lee <andrew@alee14.me>2025-05-29 21:33:44 -0400
commit4afdb7370dcc8df71c648eb76a7e126cb888e65c (patch)
tree70d90bf64f5efb19997f115ee6d9317005c34473 /tsconfig.json
downloadalure-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.json27
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"]
+}