@gtvmbh/eslint-config 2.0.0-rc.2 → 2.0.0-rc.3

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,5 +1,5 @@
1
1
  import { defineConfig } from 'eslint/config';
2
- import typescriptConfig from './eslint-config-ts';
2
+ import typescriptConfig from './eslint-config-ts.js';
3
3
 
4
4
  export default defineConfig([
5
5
  ...typescriptConfig,
@@ -1,6 +1,6 @@
1
1
  import { defineConfig } from 'eslint/config';
2
2
  import tseslint from 'typescript-eslint';
3
- import javascriptConfig from './index';
3
+ import javascriptConfig from './index.js';
4
4
 
5
5
  export default defineConfig([
6
6
  ...javascriptConfig,
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "@gtvmbh/eslint-config",
3
- "version": "2.0.0-rc.2",
3
+ "version": "2.0.0-rc.3",
4
4
  "description": "ESLint configurations for various project types developed by Gesellschaft für Technische Visualistik",
5
5
  "main": "index.js",
6
+ "exports": {
7
+ ".": "./index.js",
8
+ "./typescript": "./eslint-config-ts.js",
9
+ "./typescript.js": "./eslint-config-ts.js",
10
+ "./angular": "./eslint-config-angular.js",
11
+ "./angular.js": "./eslint-config-angular.js",
12
+ "./vidala": "./eslint-config-vidala.js",
13
+ "./vidala.js": "./eslint-config-vidala.js"
14
+ },
6
15
  "scripts": {
7
16
  "test": "echo \"Warning: no test specified\""
8
17
  },