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
This commit is contained in:
parent
23af296ea4
commit
0b1e9d3d54
2 changed files with 24 additions and 4 deletions
8
.gitmodules
vendored
8
.gitmodules
vendored
|
|
@ -1,16 +1,16 @@
|
||||||
[submodule "kicad"]
|
[submodule "kicad"]
|
||||||
path = kicad
|
path = kicad
|
||||||
url = https://github.com/emergence-engineering/kicad-source-mirror.git
|
url = https://github.com/PCBJam/kicad-source-mirror.git
|
||||||
branch = wasm-port
|
branch = wasm-port
|
||||||
[submodule "wxwidgets"]
|
[submodule "wxwidgets"]
|
||||||
path = wxwidgets
|
path = wxwidgets
|
||||||
url = https://github.com/emergence-engineering/wxWidgets.git
|
url = https://github.com/PCBJam/wxWidgets.git
|
||||||
branch = wasm-port
|
branch = wasm-port
|
||||||
[submodule "web/pcbjam-shared"]
|
[submodule "web/pcbjam-shared"]
|
||||||
path = web/pcbjam-shared
|
path = web/pcbjam-shared
|
||||||
url = https://github.com/emergence-engineering/pcbjam-shared.git
|
url = https://github.com/PCBJam/pcbjam-shared.git
|
||||||
branch = main
|
branch = main
|
||||||
[submodule "binaryen"]
|
[submodule "binaryen"]
|
||||||
path = binaryen
|
path = binaryen
|
||||||
url = https://github.com/emergence-engineering/binaryen
|
url = https://github.com/PCBJam/binaryen
|
||||||
branch = wasm-port
|
branch = wasm-port
|
||||||
|
|
|
||||||
20
scripts/tsconfig.json
Normal file
20
scripts/tsconfig.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"$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"]
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue