From 2c830379d01050e0179750c55c68abc0b66c5eef Mon Sep 17 00:00:00 2001 From: Owen Pearson Date: Wed, 26 Jul 2023 00:34:16 +0100 Subject: [PATCH] chore: move tsconfig.base.json to tsconfig.json this is the default path used by most dev tooling to look for typescript config, therefore this change makes some tool configuration easier. --- tsconfig.cjs.json | 2 +- tsconfig.base.json => tsconfig.json | 0 tsconfig.mjs.json | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tsconfig.base.json => tsconfig.json (100%) diff --git a/tsconfig.cjs.json b/tsconfig.cjs.json index 52f2059..e4d1abd 100644 --- a/tsconfig.cjs.json +++ b/tsconfig.cjs.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.base.json", + "extends": "./tsconfig.json", "compilerOptions": { "module": "CommonJS", "outDir": "dist/cjs" diff --git a/tsconfig.base.json b/tsconfig.json similarity index 100% rename from tsconfig.base.json rename to tsconfig.json diff --git a/tsconfig.mjs.json b/tsconfig.mjs.json index cc63efa..3b9d613 100644 --- a/tsconfig.mjs.json +++ b/tsconfig.mjs.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.base.json", + "extends": "./tsconfig.json", "compilerOptions": { "module": "ES6", "outDir": "dist/mjs"