File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 55 "type" : " module" ,
66 "scripts" : {
77 "node:test" : " node --test ./implementors/node/run-tests.ts" ,
8- "lint" : " eslint" ,
8+ "lint" : " eslint && tsc " ,
99 "addons:configure" : " cmake -S . -B ./build" ,
1010 "addons:build" : " cmake --build ./build" ,
1111 "addons:clean" : " git clean -xf '**/*.node' && rm -rf ./build" ,
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " esnext" ,
4+ "module" : " nodenext" ,
5+ "moduleResolution" : " nodenext" ,
6+ "rootDir" : " ./" ,
7+ "noEmit" : true ,
8+
9+ "types" : [" node" ],
10+ "erasableSyntaxOnly" : true ,
11+ "allowImportingTsExtensions" : true ,
12+ "forceConsistentCasingInFileNames" : true ,
13+ "strict" : true ,
14+ },
15+ "exclude" : [
16+ " **/CMakeFiles/**"
17+ ]
18+ }
You can’t perform that action at this time.
0 commit comments