-
Notifications
You must be signed in to change notification settings - Fork 1
/
.replit
47 lines (41 loc) · 1.48 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
run = "npm run test"
entrypoint = "src/index.ts"
modules = ["nodejs-20:v12-20231130-57acee0"]
[nix]
channel = "stable-23_11"
[[ports]]
localPort = 24678
externalPort = 80
[objectStorage]
defaultBucketID = "replit-objstore-ea9e4157-6777-4678-abca-becea84b6153"
# disabled for now until multiple LSPs are properly supported
# [languages.eslint]
# pattern = "**{*.ts,*.js,*.tsx,*.jsx,*.json}"
# [languages.eslint.languageServer]
# start = "vscode-eslint-language-server --stdio"
# [languages.eslint.languageServer.configuration]
# nodePath = "node" # this should resolve to nvm
# validate = "on"
# useESLintClass = false
# format = false
# quiet = false
# run = "onType"
# packageManager = "npm"
# rulesCustomizations = []
# onIgnoredFiles = "off"
# [languages.eslint.languageServer.configuration.workspaceFolder]
# name = "replit-storage-typescript"
# # we seem to not be able to use ${REPL_HOME} here as the vscode package does
# # not evaluate the environment variable, and we need a `/` prefix so it
# # knows we gave it an absolute path
# uri = "file:///home/runner/${REPL_SLUG}"
# [languages.eslint.languageServer.configuration.experimental]
# useFlatConfig = false
# [languages.eslint.languageServer.configuration.problems]
# shortenToSingleLine = false
# [languages.eslint.languageServer.configuration.codeAction.disableRuleComment]
# enable = true
# location = "separateLine"
# commentStyle = "line"
# [languages.eslint.languageServer.configuration.codeAction.showDocumentation]
# enable = true