-
Notifications
You must be signed in to change notification settings - Fork 0
/
.replit
37 lines (30 loc) · 874 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
33
34
35
36
37
run = "tsup; node tool/index.js; node index.js"
entrypoint = "index.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]
deploymentTarget = "static"
ignorePorts = false
build = ["sh", "-c", "tsup;"]
publicDir = "front"
[[ports]]
localPort = 3000
externalPort = 80