1+ run = "npm run test:watch"
2+
3+ entrypoint = "src/index.ts"
4+ modules = ["nodejs-20:v12-20231130-57acee0"]
5+
6+ [nix]
7+ channel = "stable-23_11"
8+
9+ [deployment]
10+ run = ["tsx", "index.ts"]
11+ deploymentTarget = "cloudrun"
12+ ignorePorts = false
13+
14+ [[ports]]
15+ localPort = 24678
16+ externalPort = 80
17+
18+
19+ # disabled for now until multiple LSPs are properly supported
20+ # [languages.eslint]
21+ # pattern = "**{*.ts,*.js,*.tsx,*.jsx,*.json}"
22+ # [languages.eslint.languageServer]
23+ # start = "vscode-eslint-language-server --stdio"
24+ # [languages.eslint.languageServer.configuration]
25+ # nodePath = "node" # this should resolve to nvm
26+ # validate = "on"
27+ # useESLintClass = false
28+ # format = false
29+ # quiet = false
30+ # run = "onType"
31+ # packageManager = "npm"
32+ # rulesCustomizations = []
33+ # onIgnoredFiles = "off"
34+ # [languages.eslint.languageServer.configuration.workspaceFolder]
35+ # name = "replit-storage-typescript"
36+ # # we seem to not be able to use ${REPL_HOME} here as the vscode package does
37+ # # not evaluate the environment variable, and we need a `/` prefix so it
38+ # # knows we gave it an absolute path
39+ # uri = "file:///home/runner/${REPL_SLUG}"
40+ # [languages.eslint.languageServer.configuration.experimental]
41+ # useFlatConfig = false
42+ # [languages.eslint.languageServer.configuration.problems]
43+ # shortenToSingleLine = false
44+ # [languages.eslint.languageServer.configuration.codeAction.disableRuleComment]
45+ # enable = true
46+ # location = "separateLine"
47+ # commentStyle = "line"
48+ # [languages.eslint.languageServer.configuration.codeAction.showDocumentation]
49+ # enable = true
0 commit comments