Skip to content

Commit

Permalink
batman
Browse files Browse the repository at this point in the history
  • Loading branch information
manbomb committed Mar 17, 2023
0 parents commit b56993f
Show file tree
Hide file tree
Showing 12 changed files with 6,023 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/node_modules
/coverage
1 change: 1 addition & 0 deletions dist/src/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"use strict";
2 changes: 2 additions & 0 deletions dist/test/main.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"use strict";
test("Dummy", () => { });
1 change: 1 addition & 0 deletions dist/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: [
"dist"
]
};
3,684 changes: 3,684 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "light-chat-flow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node ./dist/src/main.js",
"coverage": "jest --coverage --verbose"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}
Empty file added src/main.ts
Empty file.
1 change: 1 addition & 0 deletions test/main.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test("Dummy", () => {});
17 changes: 17 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"incremental": true,
"target": "es2016",
"module": "commonjs",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true
},
"include": [
"src",
"test"
],
"exclude": [
"dist"
]
}
Loading

0 comments on commit b56993f

Please sign in to comment.