diff --git a/tsconfig.json b/tsconfig.json index 00ca7eb..b262d65 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -48,6 +48,6 @@ "removeComments": true }, "include": ["src/**/*.ts"], - "exclude": ["node_modules/**"], + "exclude": ["src/**/*.deno.ts", "node_modules/**"], "compileOnSave": false } diff --git a/tsconfig/tsconfig.cjs.json b/tsconfig/tsconfig.cjs.json index 932c5fb..934c470 100644 --- a/tsconfig/tsconfig.cjs.json +++ b/tsconfig/tsconfig.cjs.json @@ -6,5 +6,10 @@ "module": "CommonJS", "noEmit": false }, - "exclude": ["../src/**/*.spec.*", "../src/**/*.test.*", "../node_modules/**"] + "exclude": [ + "../src/**/*.deno.ts", + "../src/**/*.spec.*", + "../src/**/*.test.*", + "../node_modules/**" + ] } diff --git a/tsconfig/tsconfig.esm.json b/tsconfig/tsconfig.esm.json index 2dc83d4..b0f73ff 100644 --- a/tsconfig/tsconfig.esm.json +++ b/tsconfig/tsconfig.esm.json @@ -6,5 +6,10 @@ "module": "es2015", "noEmit": false }, - "exclude": ["../src/**/*.spec.*", "../src/**/*.test.*", "../node_modules/**"] + "exclude": [ + "../src/**/*.deno.ts", + "../src/**/*.spec.*", + "../src/**/*.test.*", + "../node_modules/**" + ] } diff --git a/tsconfig/tsconfig.tests.json b/tsconfig/tsconfig.tests.json index 3fde91e..b4d1153 100644 --- a/tsconfig/tsconfig.tests.json +++ b/tsconfig/tsconfig.tests.json @@ -7,5 +7,5 @@ "noEmit": false, "removeComments": false }, - "exclude": ["../node_modules/**"] + "exclude": ["../src/**/*.deno.ts", "../node_modules/**"] } diff --git a/tsconfig/tsconfig.types.json b/tsconfig/tsconfig.types.json index 1d67fbd..000940b 100644 --- a/tsconfig/tsconfig.types.json +++ b/tsconfig/tsconfig.types.json @@ -7,5 +7,10 @@ "emitDeclarationOnly": true, "noEmit": false }, - "exclude": ["../src/**/*.spec.*", "../src/**/*.test.*", "../node_modules/**"] + "exclude": [ + "../src/**/*.deno.ts", + "../src/**/*.spec.*", + "../src/**/*.test.*", + "../node_modules/**" + ] } diff --git a/tsconfig/tsconfig.umd.json b/tsconfig/tsconfig.umd.json index 1b140b7..af5090e 100644 --- a/tsconfig/tsconfig.umd.json +++ b/tsconfig/tsconfig.umd.json @@ -7,5 +7,10 @@ "noEmit": false, "resolveJsonModule": false /* Include modules imported with .json extension.; UMD generation requires 'false' */ }, - "exclude": ["../src/**/*.spec.*", "../src/**/*.test.*", "../node_modules/**"] + "exclude": [ + "../src/**/*.deno.ts", + "../src/**/*.spec.*", + "../src/**/*.test.*", + "../node_modules/**" + ] }