aboutsummaryrefslogtreecommitdiff
path: root/.yarn/sdks/typescript/bin
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-09-25 19:49:37 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-09-25 19:49:37 +0000
commit79ef182b6c3efc074422aed01c668bdef2f30676 (patch)
tree199feec6ac134021aa3fbe888176e321719a1b21 /.yarn/sdks/typescript/bin
parent4228765100aeca3d0ae170621335631ffb784753 (diff)
downloadao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.tar.gz
ao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.tar.bz2
ao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.zip
Move to Plug'n'Play over node_modules
Diffstat (limited to '.yarn/sdks/typescript/bin')
-rwxr-xr-x.yarn/sdks/typescript/bin/tsc20
-rwxr-xr-x.yarn/sdks/typescript/bin/tsserver20
2 files changed, 40 insertions, 0 deletions
diff --git a/.yarn/sdks/typescript/bin/tsc b/.yarn/sdks/typescript/bin/tsc
new file mode 100755
index 0000000..5608e57
--- /dev/null
+++ b/.yarn/sdks/typescript/bin/tsc
@@ -0,0 +1,20 @@
+#!/usr/bin/env node
+
+const {existsSync} = require(`fs`);
+const {createRequire, createRequireFromPath} = require(`module`);
+const {resolve} = require(`path`);
+
+const relPnpApiPath = "../../../../.pnp.cjs";
+
+const absPnpApiPath = resolve(__dirname, relPnpApiPath);
+const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
+
+if (existsSync(absPnpApiPath)) {
+ if (!process.versions.pnp) {
+ // Setup the environment to be able to require typescript/bin/tsc
+ require(absPnpApiPath).setup();
+ }
+}
+
+// Defer to the real typescript/bin/tsc your application uses
+module.exports = absRequire(`typescript/bin/tsc`);
diff --git a/.yarn/sdks/typescript/bin/tsserver b/.yarn/sdks/typescript/bin/tsserver
new file mode 100755
index 0000000..cd7d557
--- /dev/null
+++ b/.yarn/sdks/typescript/bin/tsserver
@@ -0,0 +1,20 @@
+#!/usr/bin/env node
+
+const {existsSync} = require(`fs`);
+const {createRequire, createRequireFromPath} = require(`module`);
+const {resolve} = require(`path`);
+
+const relPnpApiPath = "../../../../.pnp.cjs";
+
+const absPnpApiPath = resolve(__dirname, relPnpApiPath);
+const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath);
+
+if (existsSync(absPnpApiPath)) {
+ if (!process.versions.pnp) {
+ // Setup the environment to be able to require typescript/bin/tsserver
+ require(absPnpApiPath).setup();
+ }
+}
+
+// Defer to the real typescript/bin/tsserver your application uses
+module.exports = absRequire(`typescript/bin/tsserver`);