Version 2

This commit is contained in:
mbaharip
2024-04-06 22:09:03 +07:00
parent 3be80bc9fb
commit 4c0ba8288a
99 changed files with 5381 additions and 2342 deletions
+15 -3
View File
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es5",
"target": "es2021",
"lib": ["dom", "dom.iterable", "esnext", "es2019"],
"allowJs": true,
"skipLibCheck": true,
@@ -35,6 +35,18 @@
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", ".next/types/**/*.ts"],
"exclude": ["node_modules", ".next", "**/*/_legacy/**/*", "**/*/_app/**/*"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
".next",
"**/*/_legacy/**/*",
"**/*/_app/**/*",
"**/*/_pages/**/*"
]
}