From 9ac06b5238e5961e31e12962f9ff32af2aef067c Mon Sep 17 00:00:00 2001 From: Matthew O'Connor Date: Thu, 22 Oct 2020 21:47:33 +0100 Subject: [PATCH] code --- packages/splitview-react/tsconfig.build.json | 12 ----------- packages/splitview/tsconfig.build.json | 11 ---------- tsconfig.build.json | 21 -------------------- 3 files changed, 44 deletions(-) delete mode 100644 packages/splitview-react/tsconfig.build.json delete mode 100644 packages/splitview/tsconfig.build.json delete mode 100644 tsconfig.build.json diff --git a/packages/splitview-react/tsconfig.build.json b/packages/splitview-react/tsconfig.build.json deleted file mode 100644 index 815dc3a85..000000000 --- a/packages/splitview-react/tsconfig.build.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extends": "../../tsconfig.build.json", - - "compilerOptions": { - "composite": true, - "declaration": true, - "outDir": "./dist", - "rootDir": "./src" - }, - "include": ["src/**/*"], - "exclude": ["**/node_modules"] -} diff --git a/packages/splitview/tsconfig.build.json b/packages/splitview/tsconfig.build.json deleted file mode 100644 index 4fa421241..000000000 --- a/packages/splitview/tsconfig.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "../../tsconfig.build.json", - "compilerOptions": { - "composite": true, - "declaration": true, - "outDir": "dist/cjs", - "rootDir": "src", - "tsBuildInfoFile": ".build/tsconfig.tsbuildinfo.build" - }, - "include": ["src/**/*"] -} diff --git a/tsconfig.build.json b/tsconfig.build.json deleted file mode 100644 index 53fa1db2f..000000000 --- a/tsconfig.build.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "target": "es2019", - "sourceMap": true, - "declaration": true, - "jsx": "react", - "noImplicitReturns": true, - "noImplicitAny": true, - "allowUnreachableCode": false, - "forceConsistentCasingInFileNames": true, - // "strict": true, - "strictBindCallApply": true, // pass - "alwaysStrict": true, // pass - "noImplicitThis": true, // pass - "strictFunctionTypes": true, // pass - "strictNullChecks": false, - "strictPropertyInitialization": false, - }, - "exclude": ["node_modules", "dist"] -}