Skip to content

Commit

Permalink
Merge pull request #9 from kudashevs/feature/ts_update
Browse files Browse the repository at this point in the history
Update TS version
  • Loading branch information
evanepio authored Nov 9, 2024
2 parents 798e029 + 2c36e30 commit f92f295
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions typescript/jest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
"/build/",
"/node_modules/"
],
"testEnvironment": "node"
}
14 changes: 7 additions & 7 deletions typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"Sass,TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^18.0.0",
"concurrently": "^3.6.0",
"jest": "^26.2.0",
"nodemon": "^1.19.2",
"@types/jest": "^29.4.0",
"@types/node": "^22.9.0",
"concurrently": "^7.2.0",
"jest": "^29.4.0",
"nodemon": "^2.0.0",
"shelljs": ">=0.8.5",
"ts-jest": "^26.2.0",
"typescript": "^4.2.4"
"ts-jest": "^29.1.0",
"typescript": ">=4.8.4"
},
"dependencies": {
}
Expand Down
5 changes: 4 additions & 1 deletion typescript/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"compilerOptions": {
"module": "commonjs",
"strict": true,
"allowJs": true,
"target": "es6",
"module": "ES2020",
"esModuleInterop": true,
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
Expand Down

0 comments on commit f92f295

Please sign in to comment.