taskplane 0.20.1 → 0.20.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thin entry point for the engine worker thread.
|
|
3
|
+
*
|
|
4
|
+
* Node's Worker constructor rejects .ts files inside node_modules when
|
|
5
|
+
* --experimental-strip-types is active (the default in Node v25+).
|
|
6
|
+
* This .mjs wrapper avoids the restriction — Node loads .mjs files
|
|
7
|
+
* without TypeScript processing, then --experimental-transform-types
|
|
8
|
+
* (passed via execArgv) handles subsequent .ts imports.
|
|
9
|
+
*/
|
|
10
|
+
import "./engine-worker.ts";
|