@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 +1 -1
- package/index.ts +5 -0
- package/package.json +1 -1
- package/prod.tsconfig.json +16 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Development Utilities [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml) [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml) [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql)
|
|
1
|
+
# Development Utilities [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Unit.yml) [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/Test-Lint.yml) [](https://github.com/Software-Hardware-Integration-Lab/Development-Utilities/actions/workflows/github-code-scanning/codeql)[](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
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.
|
|
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
|
+
}
|