mirror of
https://github.com/Nezumi-2711/next-gdrive-index.git
synced 2026-09-22 13:38:38 +00:00
update: remove _ pattern
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@ const config = {
|
||||
],
|
||||
"@next/next/no-img-element": "off",
|
||||
},
|
||||
ignorePatterns: ["**/*/_*"],
|
||||
ignorePatterns: [],
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ next-env.d.ts
|
||||
/docs
|
||||
/src/pages/api/legacy/
|
||||
/**/*/_legacy/
|
||||
/**/*/_*/
|
||||
# /**/*/_*/
|
||||
/data
|
||||
/.*/
|
||||
/src/_app
|
||||
|
||||
+13
-3
@@ -10,6 +10,7 @@
|
||||
"strict": true,
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"checkJs": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
|
||||
"lib": ["dom", "dom.iterable", "es2022"],
|
||||
"noEmit": true,
|
||||
@@ -23,10 +24,19 @@
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"],
|
||||
"actions": ["./src/app/actions.ts"],
|
||||
"actions": ["src/app/actions.ts"],
|
||||
"config": ["./src/config/gIndex.config.ts"]
|
||||
}
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", ".next/types/**/*.ts"],
|
||||
"exclude": ["node_modules", ".next", "**/*/_*"]
|
||||
"include": [
|
||||
".eslintrc.cjs",
|
||||
"next-env.d.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
"**/*.js",
|
||||
".next/types/**/*.ts",
|
||||
"**/*.cjs",
|
||||
"**/*.mjs"
|
||||
],
|
||||
"exclude": ["node_modules", ".next"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user