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 1788013 commit 0103415Copy full SHA for 0103415
src/node/util.ts
@@ -8,6 +8,7 @@ import * as path from "path"
8
import * as util from "util"
9
import xdgBasedir from "xdg-basedir"
10
11
+// TODO add runtime to interface
12
interface Paths {
13
data: string
14
config: string
@@ -33,6 +34,7 @@ function getEnvPaths(): Paths {
33
34
paths = {
35
data: path.join(xdgBasedir.data, "code-server"),
36
config: path.join(xdgBasedir.config, "code-server"),
37
+ // TODO get xdgBasedir.runtime
38
}
39
40
0 commit comments