diff --git a/tsconfig.build.json b/tsconfig.build.json index 1c7231e..c180ac8 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,5 +1,4 @@ { "extends": "./tsconfig.json", - "include": ["src/**/*"], - "exclude": ["node_modules", "**/*.spec.ts"] + "exclude": ["node_modules", "test", "**/*spec.ts"] } diff --git a/tsconfig.json b/tsconfig.json index 52723fb..0177b46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,16 +2,12 @@ "compilerOptions": { "module": "commonjs", "declaration": true, - "noImplicitAny": false, "removeComments": true, - "noLib": false, - "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "target": "es6", "sourceMap": true, - "outDir": "./dist", - "baseUrl": "./" + "outDir": "./dist" }, "exclude": ["node_modules"] }