File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66# Build outputs
77dist /
8- .tsbuildinfo
8+ .tsbuildinfo *
99build /
1010out /
1111* .out
Original file line number Diff line number Diff line change 100100 "postinstall" : " node scripts/install-claude-hooks-auto.js || true" ,
101101 "init" : " node dist/scripts/initialize.js" ,
102102 "build" : " rm -rf dist && node esbuild.config.js" ,
103- "typecheck" : " NODE_OPTIONS='--max-old-space-size=8192' tsc --noEmit " ,
103+ "typecheck" : " NODE_OPTIONS='--max-old-space-size=8192' tsc --project tsconfig.check.json " ,
104104 "lint" : " eslint 'src/**/*.ts' 'scripts/**/*.ts'" ,
105105 "lint:fix" : " eslint 'src/**/*.ts' 'scripts/**/*.ts' --fix --max-warnings=-1" ,
106106 "lint:fast" : " oxlint src scripts" ,
Original file line number Diff line number Diff line change @@ -9,12 +9,7 @@ import Database from 'better-sqlite3';
99import * as fs from 'fs' ;
1010import * as path from 'path' ;
1111import { RuleEngine } from '../../core/rules/rule-engine.js' ;
12- import type {
13- RuleContext ,
14- RuleTrigger ,
15- RuleSeverity ,
16- RuleRow ,
17- } from '../../core/rules/types.js' ;
12+ import type { RuleContext , RuleTrigger } from '../../core/rules/types.js' ;
1813import { filterByScope } from '../../core/rules/built-in-rules.js' ;
1914
2015function getDb ( ) : Database . Database {
Original file line number Diff line number Diff line change 66 "declarationMap" : false ,
77 "sourceMap" : false ,
88 "incremental" : true ,
9- "tsBuildInfoFile" : " .tsbuildinfo"
9+ "tsBuildInfoFile" : " .tsbuildinfo-check "
1010 },
11- "include" : [" src/**/*" ],
11+ "include" : [" src/**/*" , " scripts/**/* " ],
1212 "exclude" : [
1313 " node_modules" ,
1414 " dist" ,
You can’t perform that action at this time.
0 commit comments