Skip to content

Commit f327b4b

Browse files
committed
exclude integration from rollup
1 parent f851be4 commit f327b4b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/ai/karma.conf.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
const karmaBase = require('../../config/karma.base');
1919
const { argv } = require('yargs');
20-
const { existsSync } = require('fs');
2120

2221
const files = [`src/**/*.test.ts`];
2322

packages/ai/rollup.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ const buildPlugins = [
3232
typescriptPlugin({
3333
typescript,
3434
tsconfigOverride: {
35-
exclude: [...tsconfig.exclude, '**/*.test.ts', 'test-utils'],
35+
exclude: [
36+
...tsconfig.exclude,
37+
'**/*.test.ts',
38+
'test-utils',
39+
'integration'
40+
],
3641
compilerOptions: {
3742
target: 'es2017'
3843
}

0 commit comments

Comments
 (0)