diff --git a/tsconfig.build.json b/tsconfig.build.json index ebab2d6c4..85124a282 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,7 @@ { + "compilerOptions": { + "types": [] + }, "extends": "./tsconfig.json", - "exclude": ["./src/**/__tests__/**/*"] + "exclude": ["./src/**/__tests__/**/*", "node_modules"] } diff --git a/tsconfig.json b/tsconfig.json index b6bf40a4c..e10c6505a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,9 +14,7 @@ "experimentalDecorators": true, "plugins": [ { "name": "typescript-tslint-plugin", "configFile": "./tslint.json" } - ], - "types": [] + ] }, - "include": ["./src/**/*"], - "exclude": ["node_modules"] + "include": ["./src/**/*"] }