diff --git a/tsconfig.json b/tsconfig.json index 2a8e0472..7371337a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,10 @@ { - "extends": "./node_modules/aegir/src/config/tsconfig.aegir.json", - "compilerOptions": { - "outDir": "dist", - "baseUrl": "./", - "paths": { - "*": ["./types/*"] - } - }, - "include": [ - "types", - "test", // remove this line if you don't want to type-check tests - "src" - ] + "extends": "./node_modules/aegir/src/config/tsconfig.aegir.json", + "compilerOptions": { + "outDir": "dist" + }, + "include": [ + "test", + "src" + ] } diff --git a/types/just-range/index.d.ts b/types/just-range/index.d.ts deleted file mode 100644 index ceb1c6d2..00000000 --- a/types/just-range/index.d.ts +++ /dev/null @@ -1,3 +0,0 @@ -declare function range (start: any, stop?: any, step?: any): any[] - -export = range diff --git a/types/merge-options/index.d.ts b/types/merge-options/index.d.ts deleted file mode 100644 index bb010deb..00000000 --- a/types/merge-options/index.d.ts +++ /dev/null @@ -1,2 +0,0 @@ -declare function mergeOptions (arg1: T1, arg: T2): T1 & T2 -export = mergeOptions