mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 04:51:17 +00:00

- add basic rollup config to bundle minified and browser compatible js - use babel to transpile typescript files to js - add static code checkers: eslint and stylelint - update package.json scripts - update DEPENDENCIES.md file to include rollup and popper - set html in rss feed description fields - update Podcast and Episode entities to add description_html attribute generated by parsing markdown to html using parsedown #9
28 lines
893 B
JSON
28 lines
893 B
JSON
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.117.1/containers/docker-existing-dockerfile
|
|
{
|
|
"name": "Existing Dockerfile",
|
|
"dockerFile": "./Dockerfile",
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash",
|
|
"editor.formatOnSave": true,
|
|
"[php]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"color-highlight.markerType": "dot-before"
|
|
},
|
|
"extensions": [
|
|
"mikestead.dotenv",
|
|
"bmewburn.vscode-intelephense-client",
|
|
"streetsidesoftware.code-spell-checker",
|
|
"naumovs.color-highlight",
|
|
"heybourn.headwind",
|
|
"wayou.vscode-todo-highlight",
|
|
"esbenp.prettier-vscode",
|
|
"bradlc.vscode-tailwindcss",
|
|
"jamesbirtles.svelte-vscode",
|
|
"dbaeumer.vscode-eslint",
|
|
"stylelint.vscode-stylelint"
|
|
]
|
|
}
|