We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6780761 commit bfa4031Copy full SHA for bfa4031
ts/lib/utilities/tmpdir.js
ts/lib/utilities/tmpdir.ts
@@ -0,0 +1,7 @@
1
+'use strict';
2
+
3
+import * as os from 'os';
4
+import * as fs from 'fs';
5
6
+// Watchman gets upset when it receives non-canonical paths as watch roots
7
+export = () => fs.realpathSync(os.tmpdir());
0 commit comments