-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update engine version update
- Loading branch information
Showing
2 changed files
with
40 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
module.exports = { | ||
transform: { | ||
"^.+\\.(t|j)sx?$": "@swc/jest", | ||
}, | ||
testEnvironment: 'node', | ||
testMatch: ['**/*.spec.ts', '**/*.test.ts'], | ||
}; | ||
transform: { | ||
"^.+\\.(t|j)sx?$": "@swc/jest", | ||
}, | ||
testEnvironment: "node", | ||
testMatch: ["**/*.spec.ts", "**/*.test.ts"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
{ | ||
"name": "@expressots/boost-ts", | ||
"version": "1.0.0", | ||
"description": "Expressots: Boost is a collection of libraries for the TypeScript programming language designed to enhance its capabilities across various domains. (@boost-ts)", | ||
"types": "./dist/index.d.ts", | ||
"license": "MIT", | ||
"keywords": [], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/expressots/boost-ts.git" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"engines": { | ||
"node": ">=18.10.0" | ||
}, | ||
"author": "Richard Zampieri", | ||
"scripts": { | ||
"start": "tsnd --respawn --transpile-only --ignore-watch node_modules src/main.ts", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"build:prod": "npm run build && node dist/main.js", | ||
"test": "jest" | ||
}, | ||
"devDependencies": { | ||
"@swc/core": "1.3.37", | ||
"@swc/jest": "0.2.24", | ||
"@types/jest": "29.5.0", | ||
"jest": "29.5.0", | ||
"ts-node-dev": "2.0.0", | ||
"typescript": "5.0.2" | ||
}, | ||
"dependencies": { | ||
"rimraf": "4.4.0" | ||
} | ||
"name": "@expressots/boost-ts", | ||
"version": "1.0.0", | ||
"description": "Expressots: Boost is a collection of libraries for the TypeScript programming language designed to enhance its capabilities across various domains. (@boost-ts)", | ||
"types": "./dist/index.d.ts", | ||
"license": "MIT", | ||
"keywords": [], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/expressots/boost-ts.git" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"author": "Richard Zampieri", | ||
"scripts": { | ||
"start": "tsnd --respawn --transpile-only --ignore-watch node_modules src/main.ts", | ||
"build": "rimraf dist && tsc -p tsconfig.json", | ||
"build:prod": "npm run build && node dist/main.js", | ||
"test": "jest" | ||
}, | ||
"devDependencies": { | ||
"@swc/core": "1.3.37", | ||
"@swc/jest": "0.2.24", | ||
"@types/jest": "29.5.0", | ||
"jest": "29.5.0", | ||
"ts-node-dev": "2.0.0", | ||
"typescript": "5.0.2" | ||
}, | ||
"dependencies": { | ||
"rimraf": "^6.0.1" | ||
} | ||
} |