diff --git a/codegen/tsconfig.release.json b/codegen/tsconfig.release.json index e79e6fb..9cdf2da 100644 --- a/codegen/tsconfig.release.json +++ b/codegen/tsconfig.release.json @@ -1,6 +1,7 @@ { "extends": "./tsconfig.json", "include": ["src/**/*"], + "exclude": ["src/**/*.test.ts"], "compilerOptions": { "rootDir": "src", "outDir": "dist", diff --git a/tsconfig.release.json b/tsconfig.release.json index 8dae286..07f2429 100644 --- a/tsconfig.release.json +++ b/tsconfig.release.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", "include": ["src/**/*"], - "exclude": ["src/**/*_test.ts"], + "exclude": ["src/**/*_test.ts", "src/**/*.test.ts"], "compilerOptions": { "rootDir": "src", "outDir": "dist",