From ef2b0ab2c3f90ae1a4971a46265c536ccec62b1f Mon Sep 17 00:00:00 2001 From: Felix Becker Date: Wed, 22 Apr 2020 11:59:14 +0200 Subject: [PATCH] fix: simpler tsconfig.json --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 6e71fba44..e52d28736 100755 --- a/src/cli.ts +++ b/src/cli.ts @@ -105,7 +105,7 @@ async function main(): Promise { console.log('📄 tsconfig.json already exists, skipping creation') } else { const tsconfigJson: JSONSchemaForTheTypeScriptCompilerSConfigurationFile = { - extends: './node_modules/@sourcegraph/tsconfig/tsconfig.json', + extends: '@sourcegraph/tsconfig', compilerOptions: { target: 'ES2019', module: 'ESNext',