Skip to content

Commit 182962b

Browse files
author
Oleksandr Dzhychko
authored
Merge pull request #794 from modelix/ts-model-api/typescript-5.4.2
build(deps): bump typescript from 4.9.5 to 5.4.2 in /ts-model-api
2 parents d2767a1 + 685e423 commit 182962b

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

ts-model-api/.eslintrc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,7 @@
1717
"@typescript-eslint"
1818
],
1919
"rules": {
20+
"@typescript-eslint/consistent-type-imports": "error",
21+
"@typescript-eslint/no-import-type-side-effects":"error"
2022
}
2123
}

ts-model-api/package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ts-model-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"eslint": "^8.56.0",
4242
"husky": "^9.0.11",
4343
"shx": "^0.3.2",
44-
"typescript": "^4.7.4"
44+
"typescript": "^5.4.5"
4545
},
4646
"eslint-comment": "// IMPORTANT: keep ESLint version and versions of plugins in sync with the versions in .pre-commit-config.yaml",
4747
"engines": {

ts-model-api/src/LanguageRegistry.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import type {GeneratedLanguage} from "./GeneratedLanguage.js";
22
import type {INodeJS} from "./INodeJS.js";
3-
import {ITypedNode, TypedNode, UnknownTypedNode} from "./TypedNode.js";
3+
import type {ITypedNode} from "./TypedNode.js";
4+
import { TypedNode, UnknownTypedNode} from "./TypedNode.js";
45
import type {IConceptJS} from "./IConceptJS.js";
56

67
export class LanguageRegistry {

ts-model-api/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"esModuleInterop": true,
55
"experimentalDecorators": true,
66
"forceConsistentCasingInFileNames": true,
7-
"importsNotUsedAsValues": "error",
87
"inlineSources": true,
98
"listEmittedFiles": true,
109
"newLine": "LF",

0 commit comments

Comments
 (0)