From 56e2ec26e557259801326f7345eb91f0cacb0b6d Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Fri, 11 Dec 2020 17:05:34 +0100 Subject: [PATCH] tsconfig names --- tsconfig.bin.json => bin.tsconfig.json | 0 tsconfig.lib.json => lib.tsconfig.json | 0 package.json | 6 +++--- 3 files changed, 3 insertions(+), 3 deletions(-) rename tsconfig.bin.json => bin.tsconfig.json (100%) rename tsconfig.lib.json => lib.tsconfig.json (100%) diff --git a/tsconfig.bin.json b/bin.tsconfig.json similarity index 100% rename from tsconfig.bin.json rename to bin.tsconfig.json diff --git a/tsconfig.lib.json b/lib.tsconfig.json similarity index 100% rename from tsconfig.lib.json rename to lib.tsconfig.json diff --git a/package.json b/package.json index a3910cc..77609b1 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,10 @@ "description": "", "scripts": { "build": "yarn build:lib && yarn build:bin", - "build:lib": "tsc --p tsconfig.lib.json", - "build:bin": "tsc --p tsconfig.bin.json", + "build:lib": "tsc --p lib.tsconfig.json", + "build:bin": "tsc --p bin.tsconfig.json", "dev": "tsc -w", - "test": "jest --config jest.config.js" + "test": "ts-jest" }, "repository": { "type": "git",