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/*"] "@/*": ["./src/*"]
} }
}, },
"include": [ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.tsx.plan",
".next/types/**/*.ts"
//
],
"exclude": [ "exclude": [
"**/node_modules", "node_modules",
"**/.next", ".next",
"**/*.bak", "*.bak",
"**/*.log", "*.log",
"**/*.tmp", "*.tmp",
"**/*.bug", "*.bug",
"**/*.del", "*.del",
"**/*.draft", "*.draft",
"**/* copy *.tsx", "* copy *.tsx",
"**/* copy.tsx" "* copy.tsx"
//
], ],
"watchOptions": { "watchOptions": {
"excludeDirectories": ["**/node_modules", "_build", "temp/*", "**/.next", "**/_archive", "**/_del"], "excludeDirectories": [
"excludeFiles": [ "node_modules",
"**/*.bak", "_build",
"**/*.log", "temp",
"**/*.tmp", ".next",
"**/*.bug", "_archive",
"**/*.del", "_del"
"**/*.draft", //
"**/* copy *.tsx", ],
"**/* copy.tsx" "excludeFiles": ["*.bak", "*.log", "*.tmp", "*.bug", "*.del", "*.draft", "* copy *.tsx", "* copy.tsx"]
]
} }
} }