diff --git a/extensions/example-extension/tsconfig.json b/extensions/example-extension/tsconfig.json index 993992112a..595bfda02f 100644 --- a/extensions/example-extension/tsconfig.json +++ b/extensions/example-extension/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../../tsconfig.json", + "extends": "../../tsconfig.json", "compilerOptions": { "outDir": ".", "module": "CommonJS", @@ -7,7 +7,7 @@ "declaration": false }, "include": [ - "../../../types", + "../../types", "./example-extension.tsx" ] } diff --git a/package.json b/package.json index f592454be3..7eca5a1538 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "download:kubectl": "yarn run ts-node build/download_kubectl.ts", "download:helm": "yarn run ts-node build/download_helm.ts", "lint": "eslint $@ --ext js,ts,tsx --max-warnings=0 src/", - "extensions:example": "tsc --project src/extensions/example-extension/tsconfig.json --watch" + "extensions:example": "tsc --project extensions/example-extension/tsconfig.json --watch" }, "config": { "bundledKubectlVersion": "1.17.11",