ignore dev caches in example tool configs
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
node_modules/
|
||||
dist/
|
||||
.wrnexus/
|
||||
.wrnexus-*/
|
||||
**/.wrnexus-*/
|
||||
.wirefw/
|
||||
**/.wirefw/
|
||||
**/*.gen.ts
|
||||
|
||||
@@ -7,7 +7,14 @@ const tsconfigRootDir = dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
export default tseslint.config(
|
||||
{
|
||||
ignores: ["node_modules/**", "dist/**", ".wrnexus/**", "**/.wrnexus/**"],
|
||||
ignores: [
|
||||
"node_modules/**",
|
||||
"dist/**",
|
||||
".wrnexus/**",
|
||||
"**/.wrnexus/**",
|
||||
".wrnexus-*/**",
|
||||
"**/.wrnexus-*/**",
|
||||
],
|
||||
},
|
||||
{
|
||||
languageOptions: {
|
||||
|
||||
@@ -3,5 +3,6 @@
|
||||
"compilerOptions": {
|
||||
"lib": ["ESNext", "DOM", "DOM.Iterable"]
|
||||
},
|
||||
"include": ["app"]
|
||||
"include": ["app"],
|
||||
"exclude": ["node_modules", "dist", ".wrnexus-*", "**/.wrnexus-*"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user