-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.yaml
63 lines (63 loc) · 1.75 KB
/
language.yaml
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
# yaml-language-server: $schema=https://raw.githubusercontent.com/dhhyi/devcontainer-creator/dist/language_schema.json
extends: dcc://javascript-pnpm
devcontainer:
build:
packages:
- tmux
files:
- type: script
path: /tmux-or-else.sh
content: |
#!/bin/bash
if [ -z "$*" ]; then
tmux new-session -A -s tmux
fi
exec sh "$@"
- type: script
path: /usr/bin/nx
content: |
#!/bin/bash
if test "$1" != "reset"; then
if pnpm exec nx daemon | grep -q "not running" ; then
pnpm exec nx daemon --start
fi
fi
exec pnpm exec nx "$@"
ports:
- 4200
extras:
- named-volumes
namedVolumes:
node_modules: travel-packlist-node-modules
/home/pnpm: travel-packlist-pnpm-store
vscode:
extensions:
- angular.ng-template
- tomwhite007.rename-angular-component
- esbenp.prettier-vscode
- bradlc.vscode-tailwindcss
- streetsidesoftware.code-spell-checker
- bierner.markdown-preview-github-styles
- github.vscode-github-actions
- yzhang.markdown-all-in-one
- peggyjs.peggy-language
- nrwl.angular-console
- dbaeumer.vscode-eslint
- firsttris.vscode-jest-runner
- ms-playwright.playwright
- redhat.vscode-yaml
- aaron-bond.better-comments
- peakchen90.open-html-in-browser
settings:
editor.defaultFormatter: esbenp.prettier-vscode
terminal.integrated.profiles.linux:
tmux:
path: /tmux-or-else.sh
terminal.integrated.defaultProfile.linux: tmux
tailwindCSS.classAttributes:
- class
- ngClass
- routerLinkActive
tailwindCSS.includeLanguages:
typescript: css
nxConsole.showProjectDetailsView: false