update project config,

This commit is contained in:
louiscklaw
2025-04-19 06:43:09 +08:00
parent 1c865595bf
commit 700a32f7a5

View File

@@ -24,38 +24,29 @@
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.tsx.plan",
".next/types/**/*.ts"
//
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": [
"**/node_modules",
"**/.next",
"**/*.bak",
"**/*.log",
"**/*.tmp",
"**/*.bug",
"**/*.del",
"**/*.draft",
"**/* copy *.tsx",
"**/* copy.tsx"
//
"node_modules",
".next",
"*.bak",
"*.log",
"*.tmp",
"*.bug",
"*.del",
"*.draft",
"* copy *.tsx",
"* copy.tsx"
],
"watchOptions": {
"excludeDirectories": ["**/node_modules", "_build", "temp/*", "**/.next", "**/_archive", "**/_del"],
"excludeFiles": [
"**/*.bak",
"**/*.log",
"**/*.tmp",
"**/*.bug",
"**/*.del",
"**/*.draft",
"**/* copy *.tsx",
"**/* copy.tsx"
]
"excludeDirectories": [
"node_modules",
"_build",
"temp",
".next",
"_archive",
"_del"
//
],
"excludeFiles": ["*.bak", "*.log", "*.tmp", "*.bug", "*.del", "*.draft", "* copy *.tsx", "* copy.tsx"]
}
}