@datapos/datapos-development 0.3.407 → 0.3.409

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.
Files changed (2) hide show
  1. package/eslint.config.ts +20 -0
  2. package/package.json +2 -1
@@ -0,0 +1,20 @@
1
+ /**
2
+ * ESLint configuration.
3
+ */
4
+
5
+ // Dependencies - Framework.
6
+ import datapos from '@datapos/eslint-config-datapos';
7
+
8
+ // Exposures - Configuration.
9
+ export default [
10
+ ...datapos,
11
+ {
12
+ settings: {
13
+ 'import/resolver': {
14
+ typescript: {
15
+ project: './tsconfig.json' // Teach eslint-plugin-import about TS aliases.
16
+ }
17
+ }
18
+ }
19
+ }
20
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datapos/datapos-development",
3
- "version": "0.3.407",
3
+ "version": "0.3.409",
4
4
  "description": "A collection of utilities for managing Data Positioning projects.",
5
5
  "license": "MIT",
6
6
  "author": "Jonathan Terrell <terrell.jm@gmail.com>",
@@ -32,6 +32,7 @@
32
32
  ".markdownlint.json",
33
33
  ".prettierrc.json",
34
34
  "dist",
35
+ "eslint.config.ts",
35
36
  "LICENSE",
36
37
  "licenses/license-report-config.json"
37
38
  ],