Skip to content

Commit 23c5486

Browse files
authored
chore: fixing warnings in build due to specs being untyped (#15226)
1 parent f52d6e4 commit 23c5486

File tree

3 files changed

+20
-237
lines changed

3 files changed

+20
-237
lines changed

npm/design-system/rollup.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ function createEntry (options) {
6464
target: 'es5', // not sure what this should be?
6565
module: format === 'cjs' ? 'es2015' : 'esnext',
6666
},
67-
exclude: ['tests'],
6867
},
6968
}),
7069
)

npm/design-system/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@
2222
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
2323
"esModuleInterop": true
2424
},
25-
"include": ["src"]
25+
"include": ["src"],
26+
"exclude": ["src/**/*.spec.ts", "src/**/*.spec.tsx"]
2627
}

0 commit comments

Comments
 (0)