summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorIT Fixcomart <it@fixcomart.co.id>2024-09-24 01:36:05 +0000
committerIT Fixcomart <it@fixcomart.co.id>2024-09-24 01:36:05 +0000
commitcf42512eb11b1a96c99ced8d1f867aeb8c2dcbc1 (patch)
tree802eb86425e40b8bacda6067aa797c36598a7221 /tsconfig.json
parentb7e7696d675d0c2e36364f7cbedb0483a343048d (diff)
parent4bd29979c34c1ec3b31dd384829b008eb726769c (diff)
Merged in Feature/new-register (pull request #326)
Feature/new register
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json18
1 files changed, 7 insertions, 11 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 3afcd9ea..96670169 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "ES5",
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
+ "lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -33,10 +29,10 @@
"**/*.ts",
"**/*.tsx",
"**/*.jsx",
- ".next/types/**/*.ts"
-, "src/pages/shop/promo/index.tsx", "src/pages/shop/promo/[slug].jsx", "src/lib/promo/hooks/usePromotionSearch.js" ],
- "exclude": [
- "node_modules",
- "src"
- ]
+ ".next/types/**/*.ts",
+ "src-migrate/**/*",
+ "src/pages/shop/promo/index.tsx",
+ "src/pages/shop/promo/[slug].jsx"
+ ],
+ "exclude": ["node_modules", "src"]
}