mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 17:38:11 +03:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "Tachi",
|
|
"dockerComposeFile": ["../docker-compose-dev.yml"],
|
|
"service": "tachi-dev",
|
|
"workspaceFolder": "/tachi",
|
|
"postAttachCommand": "./dev/bootstrap.sh",
|
|
"updateRemoteUserUID": true,
|
|
"containerUser": "tachi",
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"[typescriptreact]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"terminal.integrated.profiles.linux": {
|
|
"fish": {
|
|
"path": "fish"
|
|
}
|
|
},
|
|
"terminal.integrated.profiles.windows": {
|
|
"fish": {
|
|
"path": "fish"
|
|
}
|
|
},
|
|
"terminal.integrated.profiles.osx": {
|
|
"fish": {
|
|
"path": "fish"
|
|
}
|
|
},
|
|
"terminal.integrated.defaultProfile.linux": "fish",
|
|
"terminal.integrated.defaultProfile.windows": "fish",
|
|
"terminal.integrated.defaultProfile.osx": "fish",
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
]
|
|
},
|
|
"extensions": ["dbaeumer.vscode-eslint", "biomejs.biome"]
|
|
}
|
|
}
|
|
}
|