diff --git a/tsconfig.build.json b/tsconfig.build.json index 70df21e1651..e2c5987c4b7 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -6,6 +6,5 @@ "outDir": "./dist", "rootDir": "./src" }, - "include": ["./src/**/*.ts"], "exclude": ["**/*.test.ts"] } diff --git a/tsconfig.json b/tsconfig.json index 2887202355a..de3572e5f74 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,11 +5,9 @@ "inlineSources": true, "module": "commonjs", "moduleResolution": "node", - "paths": { - "*": ["./types/*"] - }, "sourceMap": true, "strict": true, "target": "es6" - } + }, + "include": ["./types/**/*.d.ts", "./src/**/*.ts"] }