@@ -0,0 +1,15 @@
+{
+ // 使用 IntelliSense 了解相关属性。
+ // 悬停以查看现有属性的描述。
+ // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "type": "chrome",
+ "request": "launch",
+ "name": "针对 localhost 启动 Chrome",
+ "url": "http://localhost:8080",
+ "webRoot": "${workspaceFolder}"
+ }
+ ]
+}
@@ -0,0 +1 @@
+Subproject commit 875d3d361b02643cdcf29d4f37137bea49a2a59a
@@ -0,0 +1,7 @@
+ "compilerOptions": {
+ "target": "es6", // 或更高版本如 "es2015", "es2017" 等
+ "lib": ["es6", "dom"], // 添加需要的库定义
+ // 其他配置...