Skip to content

Commit

Permalink
Merge pull request #34 from erik-sth/main
Browse files Browse the repository at this point in the history
New upates.
  • Loading branch information
erik-sth authored Oct 22, 2023
2 parents 59f3371 + b2745b5 commit bf8558b
Show file tree
Hide file tree
Showing 39 changed files with 905 additions and 76 deletions.
10 changes: 10 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# /node_modules/* in the project root is ignored by default
# build artefacts
dist/*
coverage/*
# data definition files
**/*.d.ts
# 3rd party libs
/src/public/
# custom definition files
/src/types/
Empty file added .eslintrc
Empty file.
File renamed without changes.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug TypeScript",
"program": "${workspaceFolder}/path/to/your/app.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"sourceMaps": true,
"protocol": "inspector"
}
]
}
11 changes: 10 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
module.exports = {
preset: "ts-jest",
globals: {
"ts-jest": {
tsconfig: "tsconfig.json",
},
},
moduleFileExtensions: ["ts", "js"],
transform: {
"^.+\\.(ts|tsx)$": "ts-jest",
},
testMatch: ["**/test/**/*.test.(ts|js)"],
testEnvironment: "node",
};
24 changes: 0 additions & 24 deletions notex.txt

This file was deleted.

Loading

0 comments on commit bf8558b

Please sign in to comment.