fix building *.del directory, it is now not building,

This commit is contained in:
louiscklaw
2025-04-22 00:30:21 +08:00
parent 00a978e55a
commit e4aee3f02f

View File

@@ -2,6 +2,7 @@
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -15,19 +16,23 @@
"jsx": "preserve",
"incremental": true,
"allowImportingTsExtensions": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
"plugins": [{ "name": "next" }],
"paths": { "@/*": ["./src/*"] }
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
//
],
"exclude": [
"node_modules",
".next",
//
"**/*del",
"**/*.bak",
"*.bak",
"*.log",
"*.tmp",
@@ -36,28 +41,5 @@
"*.draft",
"**/* copy *.tsx",
"**/* copy.tsx"
],
"watchOptions": {
"excludeDirectories": [
"node_modules",
"_build",
"temp",
".next",
"_archive",
"_del",
"*.del"
//
],
"excludeFiles": [
//
"*.bak",
"*.log",
"*.tmp",
"*.bug",
"*.del",
"*.draft",
"* copy *.tsx",
"* copy.tsx"
]
}
]
}