@neurodevs/eslint-config-ndx 0.0.10 → 0.0.12

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.
package/build/index.d.ts CHANGED
@@ -1 +1 @@
1
- export { default } from './eslint.config.js';
1
+ export { default as esConfigNdx } from './eslint.config.js';
package/build/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export { default } from './eslint.config.js';
1
+ export { default as esConfigNdx } from './eslint.config.js';
2
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,oBAAoB,CAAA"}
package/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import type { Linter } from 'eslint'
2
+
3
+ export const esConfigNdx: Linter.Config[]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neurodevs/eslint-config-ndx",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "ESLint config for the Neurodevs ecosystem",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -20,6 +20,7 @@
20
20
  "url": "https://github.com/neurodevs/eslint-config-ndx/issues"
21
21
  },
22
22
  "main": "build/index.js",
23
+ "types": "index.d.ts",
23
24
  "scripts": {
24
25
  "build.ci": "yarn run build.tsc && yarn run lint",
25
26
  "build.dev": "yarn run build.tsc --sourceMap ; yarn run lint",
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export { default } from './eslint.config.js'
1
+ export { default as esConfigNdx } from './eslint.config.js'