aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.json
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
committerbndw <ben@bdw.to>2023-04-26 17:49:25 -0700
commit8686078ae801fdc15df5a40ee158a43373d37c1c (patch)
treef8807fa764e917c6c4cdd30dcff31aa4bb060da8 /tsconfig.json
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..e06a445
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,28 @@
1{
2 "compilerOptions": {
3 "target": "es5",
4 "lib": ["dom", "dom.iterable", "esnext"],
5 "allowJs": true,
6 "skipLibCheck": true,
7 "strict": true,
8 "forceConsistentCasingInFileNames": true,
9 "noEmit": true,
10 "esModuleInterop": true,
11 "module": "esnext",
12 "moduleResolution": "node",
13 "resolveJsonModule": true,
14 "isolatedModules": true,
15 "jsx": "preserve",
16 "incremental": true,
17 "plugins": [
18 {
19 "name": "next"
20 }
21 ],
22 "paths": {
23 "@/*": ["./*"]
24 }
25 },
26 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27 "exclude": ["node_modules"]
28}