Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ $ npm install ibantools
$ bower install ibantools
```

Note that Bower package will not be generated any more after TypeScript 7 release.

## Usage

See [full documentation](http://simplify.github.io/ibantools) with examples on Github pages.
Expand Down Expand Up @@ -112,4 +114,3 @@ This work is dual-licensed under MIT and MPL-2.0.
You can choose between one of them if you use this work.

`SPDX-License-Identifier: MIT OR MPL-2.0`

12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
},
"scripts": {
"build": "npm run build-node && npm run build-bower && npm run build-module",
"build-node": "rm -rf build && npx tsc src/*.ts --declaration --target es2017 --module commonjs --outDir ./build/",
"build-bower": "rm -rf dist && npx tsc src/*.ts --declaration --target es2017 --module amd --outDir ./dist/",
"build-module": "rm -rf jsnext && npx tsc src/*.ts --target es2017 --module es2020 --outDir ./jsnext/",
"build-node": "rm -rf build && npx tsc --declaration --target es2017 --module commonjs --outDir ./build/",
"build-bower": "rm -rf dist && npx tsc --declaration --target es2017 --module amd --outDir ./dist/",
"build-module": "rm -rf jsnext && npx tsc --target es2017 --module es2020 --outDir ./jsnext/",
"test": "npm run build && mocha 'test/**/*.js'",
"coverage": "npm run build && c8 mocha && c8 report --reporter=text-lcov > test.lcov",
"lint": "eslint 'src/**/*.ts' 'test/**/*.js'",
Expand Down Expand Up @@ -71,7 +71,7 @@
"prettier": "^3.0.3",
"requirejs": "^2.3.6",
"typedoc": "^0.28.18",
"typescript": "^5.2"
"typescript": "^6.0"
},
"resolutions": {
"source-map": "^0.8.0-beta.0"
Expand Down
8 changes: 5 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
"removeComments": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"rootDir": ".",
"sourceMap": true,
"rootDir": "src/",
"sourceMap": false,
"listFiles": true,
"newLine": "LF",
"noEmitOnError": true
"noEmitOnError": true,
"removeComments": false,
"ignoreDeprecations": "6.0"
},
"filesGlob": [
"./**/*.ts",
Expand Down
Loading