Skip to content

Commit 25b856f

Browse files
committed
tweaks and fixes
1 parent b9e7f3a commit 25b856f

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

.hintrc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"extends": [
3+
"development"
4+
],
5+
"hints": {
6+
"no-inline-styles": "off"
7+
},
8+
"browserslist": [
9+
"defaults",
10+
"not ie 11",
11+
"not chrome <= 109",
12+
"not ios_saf <= 18.3",
13+
"not safari <= 18.3",
14+
"not samsung <= 27"
15+
]
16+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,8 @@
374374
"package": "npm-run-all -l -p build:webview build:esbuild check-types lint",
375375
"pretest": "npm run compile",
376376
"dev": "cd webview-ui && npm run dev",
377-
"dev:fast": "code --extensionDevelopmentPath=${PWD} --enable-proposed-api=roo-cline",
377+
"dev:code": "code --extensionDevelopmentPath=. --enable-proposed-api=roo-cline",
378+
"dev:insiders": "code-insiders --extensionDevelopmentPath=. --enable-proposed-api=roo-cline",
378379
"test": "node scripts/run-tests.js",
379380
"test:extension": "jest -w=40%",
380381
"test:webview": "cd webview-ui && npm run test",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"experimentalDecorators": true,
55
"forceConsistentCasingInFileNames": true,
66
"isolatedModules": true,
7-
"lib": ["es2022", "esnext.disposable", "DOM"],
7+
"lib": ["es2022", "DOM"],
88
"module": "esnext",
99
"moduleResolution": "Bundler",
1010
"noFallthroughCasesInSwitch": true,

0 commit comments

Comments
 (0)