From 200688d8d18264c7e805138864563fddea153a80 Mon Sep 17 00:00:00 2001 From: Conicaw Date: Wed, 5 Jul 2023 18:51:18 -0500 Subject: [PATCH] build: don't incrementally build Don't incrementally build --- tsconfig.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a3103df..7859114 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,4 @@ { - "include": [ - "lib/**/*" - ], - "exclude": [ - "node_modules" - ], "$schema": "https://json.schemastore.org/tsconfig", "display": "Node 18 + Strictest", "compilerOptions": { @@ -37,8 +31,13 @@ "sourceMap": true, "outDir": "./dist", "rootDir": "./lib", - "incremental": true, "strictPropertyInitialization": false, "resolveJsonModule": true - } + }, + "include": [ + "lib/**/*" + ], + "exclude": [ + "node_modules" + ] }