@software-hardware-integration-lab/development-utilities 3.0.0-beta.7919f94 → 3.0.0-beta.c8f579c

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Development Utilities [![Unit Test](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml) [![Lint Check](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml) [![CodeQL](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql) [![NPM Version](https://img.shields.io/npm/v/%40software-hardware-integration-lab%2Fdevelopment-utilities)](https://www.npmjs.com/package/@software-hardware-integration-lab/development-utilities)
1
+ # Development Utilities [![Unit Test](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml) [![Lint Check](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml) [![CodeQL](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql/badge.svg)](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql)[![NPM Version](https://img.shields.io/npm/v/%40software-hardware-integration-lab%2Fdevelopment-utilities)](https://www.npmjs.com/package/@software-hardware-integration-lab/development-utilities)
2
2
 
3
3
  Shared development-time configurations for TypeScript, ESLint (flat config), and Next.js. These utilities are dev-only and should not ship with application runtime artifacts.
4
4
 
package/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ // Export baseline configuration for ESlint
2
+ export { eslintConfig as baseLintConfig } from './config/linter/base.js';
3
+
4
+ // Export Next.js specific linting configuration
5
+ export { eslintConfig as nextLintConfig } from './config/linter/next.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@software-hardware-integration-lab/development-utilities",
3
- "version": "3.0.0-beta.7919f94",
3
+ "version": "3.0.0-beta.c8f579c",
4
4
  "description": "Collection of configurations, settings and packages to be common across multiple products/repositories.",
5
5
  "main": "bin/index.js",
6
6
  "type": "module",
@@ -0,0 +1,16 @@
1
+ {
2
+ // Override the standard build configurations with the below production ready settings
3
+ "compilerOptions": {
4
+ /* Visit https://aka.ms/tsconfig to read more about this file */
5
+ "sourceMap": false, /* Create source map files for emitted JavaScript files. */
6
+ "removeComments": true, /* Disable emitting comments. */
7
+ "emitDeclarationOnly": true /* Only output d.ts files and not JavaScript files. */
8
+ },
9
+ // Ensure that the build output and test folders are not included in the transpiled output
10
+ "exclude": [
11
+ "test/",
12
+ "bin/"
13
+ ],
14
+ // Inherit all of the standard build configurations
15
+ "extends": "./tsconfig.json"
16
+ }