d786316766
* feat(plugin-configs): update configs to work with nodes strip-types feature * build(parca): use nodes experimental-strip-types so build works with node 22 - 24 * build(decoupled-plugins): support nodes strip types feature for webpack builds * build(e2e-test-plugins): update build scripts and config to work with node strip types * style(plugin-configs): fix import/order lint errors * refactor(plugins): use allowImportingTsExtensions in favour of ts-ignore comments * refactor(plugin-configs): clean up ts-ignore and ts-expect-error comments in webpack.config * refactor(plugin-configs): fix up changes for nodes strip-types flag * chore(loki): fix up build command for node 24 support
15 lines
378 B
JSON
15 lines
378 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"alwaysStrict": true,
|
|
"declaration": false,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"extends": "@grafana/tsconfig",
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx"],
|
|
"include": ["./types", "."]
|
|
}
|