aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2021-05-09 16:59:23 +0200
committerlonkaars <loek@pipeframe.xyz>2021-05-09 16:59:23 +0200
commit5a0f2ed7af3bb804219c1be07969103572384ceb (patch)
treebb87a04560201d8af6e6e4ca5d84f8a06b8c3ace /tsconfig.json
parent87f7bd7b20277786c39726db397caf1971abb956 (diff)
add next.js project files
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json29
1 files changed, 29 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..1d00c15
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,29 @@
+{
+ "compilerOptions": {
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": false,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "target": "es5",
+ "jsx": "preserve"
+ },
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
+}