Skip to content

Commit fda2e2e

Browse files
committed
fix(rollup): Seeing if I can make react use local tsconfig
1 parent 95adcee commit fda2e2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/react/rollup.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ export default {
1414
}
1515
],
1616
plugins: [
17-
typescript(),
17+
typescript({
18+
tsconfig: './tsconfig.json',
19+
}),
1820
],
1921
external: id => external.includes(id) || id.startsWith('@ionic/core') || id.startsWith('ionicons') || id.startsWith('@stencil/react-output-target'),
2022
};

0 commit comments

Comments
 (0)