pcbjam/scripts/tsconfig.json
Gergő Törcsvári 0b1e9d3d54
chore: repoint .gitmodules at the PCBJam org
Redirects from emergence-engineering still work, but fresh clones and CI
checkouts should reference the real home.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Y32etYBCKV6t1qDoLoGmgF
2026-07-28 12:52:01 +02:00

20 lines
764 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
// IDE-only project for the plain-node .mjs scripts (deploy/, etc.). Without
// it the TS server attaches these files to a neighboring src-scoped project
// and flags their relative imports as outside that project. No package.json
// lives up this tree, so @types/node is unreachable — keep checkJs OFF; this
// config exists for module resolution, not type-checking. Nothing builds
// from it (noEmit; the scripts run directly under node).
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"noEmit": true
},
"include": ["**/*.mjs"]
}