``refactor Update tsconfig.json to include trailing comments in compilerOptions paths and exclude patterns ``

This commit is contained in:
2025-05-16 11:16:10 +08:00
parent dae97f52ae
commit 471175d08d

View File

@@ -5,6 +5,7 @@
"dom",
"dom.iterable",
"esnext"
//
],
"allowJs": true,
"skipLibCheck": true,
@@ -27,6 +28,7 @@
"paths": {
"@/*": [
"./src/*"
//
]
}
},
@@ -35,6 +37,7 @@
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
//
],
"exclude": [
"node_modules",
@@ -49,6 +52,6 @@
"**/*.draft",
"**/*.log",
"**/*.tmp",
"**/*del",
"**/*del"
]
}