Skip to content

Commit efb3f25

Browse files
committed
chore: initial commit
0 parents  commit efb3f25

File tree

14 files changed

+7819
-0
lines changed

14 files changed

+7819
-0
lines changed

.claude/settings.local.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(npm init:*)",
5+
"Bash(npm install:*)",
6+
"Bash(mkdir:*)",
7+
"WebFetch(domain:tree-sitter.github.io)",
8+
"Bash(npm uninstall:*)"
9+
],
10+
"deny": []
11+
}
12+
}

jest.config.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
preset: 'ts-jest',
3+
testEnvironment: 'node',
4+
roots: ['<rootDir>/src', '<rootDir>/tests'],
5+
testMatch: ['**/__tests__/**/*.test.ts', '**/?(*.)+(spec|test).ts'],
6+
transform: {
7+
'^.+\\.ts$': 'ts-jest',
8+
},
9+
collectCoverageFrom: [
10+
'src/**/*.ts',
11+
'!src/**/*.d.ts',
12+
],
13+
coverageDirectory: 'coverage',
14+
coverageReporters: ['text', 'lcov', 'html'],
15+
};

0 commit comments

Comments
 (0)