@forklaunch/express 0.1.22 → 0.1.24
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/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/lib/app.d.ts +0 -2
- package/lib/app.d.ts.map +0 -1
- package/lib/app.js +0 -62
- package/lib/eslint.config.d.mts +0 -1134
- package/lib/eslint.config.d.mts.map +0 -1
- package/lib/eslint.config.mjs +0 -10
- package/lib/jest.config.d.ts +0 -4
- package/lib/jest.config.d.ts.map +0 -1
- package/lib/jest.config.js +0 -19
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"eslint.config.d.mts","sourceRoot":"","sources":["../eslint.config.mjs"],"names":[],"mappings":""}
|
package/lib/eslint.config.mjs
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
import pluginJs from '@eslint/js';
|
2
|
-
import globals from 'globals';
|
3
|
-
import tseslint from 'typescript-eslint';
|
4
|
-
export default [
|
5
|
-
{ files: ['**/*.{ts}'] },
|
6
|
-
{ ignores: ['tests/**/*', 'dist/**/*', 'lib/**/*', 'node_modules/**/*'] },
|
7
|
-
{ languageOptions: { globals: globals.browser } },
|
8
|
-
pluginJs.configs.recommended,
|
9
|
-
...tseslint.configs.recommended
|
10
|
-
];
|
package/lib/jest.config.d.ts
DELETED
package/lib/jest.config.d.ts.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"jest.config.d.ts","sourceRoot":"","sources":["../jest.config.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,oBAiBjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
|
package/lib/jest.config.js
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
const jestConfig = {
|
2
|
-
preset: 'ts-jest/presets/default-esm', // or other ESM presets
|
3
|
-
moduleNameMapper: {
|
4
|
-
'^(\\.{1,2}/.*)\\.js$': '$1'
|
5
|
-
},
|
6
|
-
transform: {
|
7
|
-
// '^.+\\.[tj]sx?$' to process ts,js,tsx,jsx with `ts-jest`
|
8
|
-
// '^.+\\.m?[tj]sx?$' to process ts,js,tsx,jsx,mts,mjs,mtsx,mjsx with `ts-jest`
|
9
|
-
'^.+\\.[tj]sx?$': [
|
10
|
-
'ts-jest',
|
11
|
-
{
|
12
|
-
useESM: true
|
13
|
-
}
|
14
|
-
],
|
15
|
-
'^.+\\.js$': 'babel-jest'
|
16
|
-
},
|
17
|
-
testPathIgnorePatterns: ['.*dist/', '.*node_modules/']
|
18
|
-
};
|
19
|
-
export default jestConfig;
|