Start migration, and re-organizing files.

This commit is contained in:
mbaharip
2023-05-20 21:31:24 +07:00
parent c823f7f730
commit a234559321
59 changed files with 3263 additions and 939 deletions
+46 -13
View File
@@ -1,7 +1,12 @@
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext", "es2019"],
"lib": [
"dom",
"dom.iterable",
"esnext",
"es2019"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -16,16 +21,44 @@
"incremental": true,
"baseUrl": "./src",
"paths": {
// "@/*": ["./src/*"],
"components/*": ["components/*"],
"config/*": ["config/*"],
"hooks/*": ["hooks/*"],
"styles/*": ["styles/*"],
"utils/*": ["utils/*"],
"types/*": ["types/*"],
"context/*": ["context/*"],
}
// "@/*": ["./src/*"],
"components/*": [
"components/*"
],
"config/*": [
"config/*"
],
"hooks/*": [
"hooks/*"
],
"styles/*": [
"styles/*"
],
"utils/*": [
"utils/*"
],
"types/*": [
"types/*"
],
"context/*": [
"context/*"
]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js"],
"exclude": ["node_modules", ".next"]
}
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
".next"
]
}