Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Update requirements and dependencies #106

Merged
9 commits merged into from
Jan 23, 2021
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
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,28 @@
# general things to ignore
/.tscache
/.idea
/build/
/dist/tsBuildInfoFile
/lib/
*.egg-info/
*.egg
*.py[cod]
__pycache__/
*.so
*~
*.log
*.pot
*.pyc
*.swp
*.lock
# due to using tox and pytest
.tox
.cache
node_modules/
/src/**/*.js
/tests/**/*.js
/src/**/*.map
/tests/**/*.map
*.css
*.log
/.cache-loader
package-lock.json
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ module.exports = {
"__APP_CONTEXT__": "TEST_CONTEXT",
'ts-jest': {
// has to be set to true, otherwise i18n import fails
"tsConfig": {
"tsconfig": {
"esModuleInterop": true,
}
}
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@
},
"devDependencies": {
"@types/d3": "~3.5.36",
"@types/jest": "~26.0.5",
"@types/jest": "~26.0.20",
"identity-obj-proxy": "~3.0.0",
"jest": "~26.1.0",
"jest": "~26.6.3",
"jest-raw-loader": "~1.0.1",
"rimraf": "~3.0.2",
"shx": "~0.3.2",
"ts-jest": "~26.1.3",
"tslib": "~2.0.0",
"shx": "~0.3.3",
"ts-jest": "~26.4.4",
"tslib": "~2.0.3",
"tslint": "~5.20.1",
"typedoc": "~0.17.8",
"typedoc": "~0.19.2",
"typescript": "~3.9.7"
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"esModuleInterop": false,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"preserveWatchOutput":true
"preserveWatchOutput":true,
"incremental": true,
"tsBuildInfoFile": "dist/tsBuildInfoFile"
},
"include": [
"src/**/*.ts",
Expand Down