-
Notifications
You must be signed in to change notification settings - Fork 1
/
.replit
77 lines (62 loc) · 1.95 KB
/
.replit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
hidden=[".config", ".github", ".npmrc", "tsconfig-base.json", ".mocharc.json", ".gitignore", "package-lock.json"]
compile=["npm", "i"]
run = ["npm", "test"]
entrypoint = ".replit"
[nix]
channel = "stable-22_11"
[env]
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
EDITOR="vim"
NODE_NO_WARNINGS="1"
npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global"
npm_config_yes="true"
NODE_OPTIONS="--loader ts-node/esm"
[packager]
language = "nodejs"
[packager.features]
enabledForHosting = false
packageSearch = true
guessImports = false
# Todo: Currently uses mocha by default, use npm run test instead or Test Runner
# [unitTest]
# language = "nodejs"
[languages.typescript]
pattern = "**/{*.ts,*.js,*.tsx,*.jsx}"
syntax = "typescript"
[languages.typescript.languageServer]
start = [ "typescript-language-server", "--stdio" ]
[debugger]
support = true
[debugger.interactive]
transport = "localhost:0"
startCommand = [ "dap-node" ]
[debugger.interactive.initializeMessage]
command = "initialize"
type = "request"
[debugger.interactive.initializeMessage.arguments]
clientID = "replit"
clientName = "replit.com"
columnsStartAt1 = true
linesStartAt1 = true
locale = "en-us"
pathFormat = "path"
supportsInvalidatedEvent = true
supportsProgressReporting = true
supportsRunInTerminalRequest = true
supportsVariablePaging = true
supportsVariableType = true
[debugger.interactive.launchMessage]
command = "launch"
type = "request"
[debugger.interactive.launchMessage.arguments]
runtimeArgs = ["--loader", "ts-node/esm/transpile-only"]
args = []
console = "externalTerminal"
cwd = "."
environment = []
pauseForSourceMap = false
program = "./examples/usage.ts"
request = "launch"
sourceMaps = true
stopOnEntry = false
type = "pwa-node"