-
Notifications
You must be signed in to change notification settings - Fork 1
/
.replit
32 lines (26 loc) · 788 Bytes
/
.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
run = "tsx src/server.ts"
entrypoint = "src/server.ts"
hidden = [".config", "package-lock.json", "tsconfig.json"]
[packager]
language = "nodejs"
[packager.features]
enabledForHosting = false
packageSearch = true
guessImports = true
[nix]
channel = "stable-22_11"
[env]
XDG_CONFIG_HOME = "$REPL_HOME/.config"
PATH = "$REPL_HOME/node_modules/.bin:$REPL_HOME/.config/npm/node_global/bin"
npm_config_prefix = "$REPL_HOME/.config/npm/node_global"
[gitHubImport]
requiredFiles = [".replit", "replit.nix", ".config"]
[languages]
[languages.typescript]
pattern = "**/{*.ts,*.js,*.tsx,*.jsx,*.json}"
[languages.typescript.languageServer]
start = "typescript-language-server --stdio"
[deployment]
run = ["tsx", "index.ts"]
deploymentTarget = "cloudrun"
ignorePorts = false