aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorBobby <[email protected]>2023-05-09 19:41:27 -0400
committerBobby <[email protected]>2023-05-09 19:41:27 -0400
commitca81030bd777ea04441f9b0cfc388e096f60a5a4 (patch)
tree8d67eaf74d81e5b5cb888d91624caa02a4f6c3de /tsconfig.json
downloadmafia-ca81030bd777ea04441f9b0cfc388e096f60a5a4.tar.xz
mafia-ca81030bd777ea04441f9b0cfc388e096f60a5a4.zip
Initial commit from Create Next App
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 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "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"]
+}