Replace ts-node with tsx across all push3-transpiler scripts: - inject.sh: npx ts-node → npx tsx - test_inject_extraction.sh: node --loader ts-node/esm → npx tsx - test_transpiler_clamping.sh: node --loader ts-node/esm → npx tsx - package.json: ts-node devDep → tsx, transpile script updated - tsconfig.json: removed ts-node config block - src/index.ts: updated usage comments Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
355 B
JSON
16 lines
355 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2022"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|