Skip to content

Commit

Permalink
*: report metrics to the VM agent
Browse files Browse the repository at this point in the history
  • Loading branch information
adityamaru committed Dec 20, 2024
1 parent 70572bc commit def1585
Show file tree
Hide file tree
Showing 9 changed files with 1,580 additions and 102 deletions.
6 changes: 6 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
'@babel/preset-typescript'
]
};
14 changes: 7 additions & 7 deletions dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ const config: Config.InitialOptions = {
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
transform: {
'^.+\\.ts$': 'ts-jest'
'^.+\\.ts$': 'ts-jest',
'^.+\\.js$': 'babel-jest'
},
transformIgnorePatterns: [
'/node_modules/(?!(@buf|@connectrpc)/)'
],
verbose: true,
collectCoverage: true,
collectCoverageFrom: [
Expand Down
Loading

0 comments on commit def1585

Please sign in to comment.