@saashub/qoq-eslint-v9-ts-vitest 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,23 +0,0 @@
1
- import { EslintConfig } from '@saashub/qoq-eslint-v9-js';
2
- import merge from 'lodash/merge.js';
3
-
4
- import baseConfig from './baseConfig';
5
-
6
- const filesExtensions = ['js', 'ts'];
7
-
8
- export const getEslintConfig: (
9
- srcPath?: string,
10
- files?: string[],
11
- ignores?: string[]
12
- ) => EslintConfig[] = (
13
- srcPath = 'src',
14
- files = [`${srcPath}/**/*.spec.{${filesExtensions.join(',')}}`],
15
- ignores = []
16
- ) => [
17
- merge({}, baseConfig, {
18
- files,
19
- ignores,
20
- }),
21
- ];
22
-
23
- export default getEslintConfig();
package/src/index.ts DELETED
@@ -1,4 +0,0 @@
1
- import baseConfig from './baseConfig';
2
- import eslintConfig from './eslintConfig';
3
-
4
- export default { baseConfig, eslintConfig };
package/tsconfig.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "./lib"
5
- },
6
- "include": ["./src"]
7
- }
package/vitest.config.mjs DELETED
@@ -1,3 +0,0 @@
1
- import config from '../../vitest.config.mjs';
2
-
3
- export default config;