mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-03-31 06:33:51 -04:00
Added Chrome launch configuration and fixed source map roots
This commit is contained in:
17
.vscode/launch.json
vendored
Normal file
17
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Application",
|
||||
"type": "pwa-chrome",
|
||||
"request": "launch",
|
||||
"runtimeArgs": [
|
||||
"--disable-features=Translate",
|
||||
"--incognito"
|
||||
],
|
||||
"url": "http://localhost:8000/mkdocs-material/",
|
||||
"webRoot": ".",
|
||||
"smartStep": true
|
||||
}
|
||||
]
|
||||
}
|
||||
11
.vscode/settings.json
vendored
Normal file
11
.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"git.ignoreLimitWarning": true,
|
||||
"search.exclude": {
|
||||
"**/material": true,
|
||||
"**/node_modules": true,
|
||||
"**/package-lock.json": true
|
||||
},
|
||||
"search.followSymlinks": false,
|
||||
"stylelint.validate": ["css", "scss"],
|
||||
"typescript.tsdk": "node_modules/typescript/lib"
|
||||
}
|
||||
27
.vscode/tasks.json
vendored
Normal file
27
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Build",
|
||||
"type": "shell",
|
||||
"command": "npm run build",
|
||||
"group": "build",
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
"problemMatcher": [
|
||||
"$tsc"
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "Start and watch for changes",
|
||||
"type": "shell",
|
||||
"command": "npm start",
|
||||
"isBackground": true,
|
||||
"group": "build",
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user