File tree 7 files changed +12
-7
lines changed
7 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2024 Datadog
3
+ Copyright (c) 2025 Datadog
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 1
1
Datadog build-plugins
2
- Copyright 2024 -present Datadog, Inc.
2
+ Copyright 2025 -present Datadog, Inc.
3
3
4
4
This product includes software developed at Datadog (https://www.datadoghq.com/).
Original file line number Diff line number Diff line change 6
6
// Anything between #types-export-injection-marker
7
7
// will be updated using the 'yarn cli integrity' command.
8
8
9
+ import type { Options } from '@dd/core/types' ;
9
10
import * as factory from '@dd/factory' ;
10
11
import esbuild from 'esbuild' ;
11
12
@@ -16,7 +17,7 @@ export const datadogEsbuildPlugin = factory.buildPluginFactory({
16
17
version : pkg . version ,
17
18
} ) . esbuild ;
18
19
19
- export type { Options as EsbuildPluginOptions } from '@dd/core/types' ;
20
+ export type EsbuildPluginOptions = Options ;
20
21
21
22
export type {
22
23
// #types-export-injection-marker
Original file line number Diff line number Diff line change 6
6
// Anything between #types-export-injection-marker
7
7
// will be updated using the 'yarn cli integrity' command.
8
8
9
+ import type { Options } from '@dd/core/types' ;
9
10
import * as factory from '@dd/factory' ;
10
11
import rollup from 'rollup' ;
11
12
@@ -16,7 +17,7 @@ export const datadogRollupPlugin = factory.buildPluginFactory({
16
17
version : pkg . version ,
17
18
} ) . rollup ;
18
19
19
- export type { Options as RollupPluginOptions } from '@dd/core/types' ;
20
+ export type RollupPluginOptions = Options ;
20
21
21
22
export type {
22
23
// #types-export-injection-marker
Original file line number Diff line number Diff line change 6
6
// Anything between #types-export-injection-marker
7
7
// will be updated using the 'yarn cli integrity' command.
8
8
9
+ import type { Options } from '@dd/core/types' ;
9
10
import * as factory from '@dd/factory' ;
10
11
import rspack from '@rspack/core' ;
11
12
@@ -16,7 +17,7 @@ export const datadogRspackPlugin = factory.buildPluginFactory({
16
17
version : pkg . version ,
17
18
} ) . rspack ;
18
19
19
- export type { Options as RspackPluginOptions } from '@dd/core/types' ;
20
+ export type RspackPluginOptions = Options ;
20
21
21
22
export type {
22
23
// #types-export-injection-marker
Original file line number Diff line number Diff line change 6
6
// Anything between #types-export-injection-marker
7
7
// will be updated using the 'yarn cli integrity' command.
8
8
9
+ import type { Options } from '@dd/core/types' ;
9
10
import * as factory from '@dd/factory' ;
10
11
import vite from 'vite' ;
11
12
@@ -16,7 +17,7 @@ export const datadogVitePlugin = factory.buildPluginFactory({
16
17
version : pkg . version ,
17
18
} ) . vite ;
18
19
19
- export type { Options as VitePluginOptions } from '@dd/core/types' ;
20
+ export type VitePluginOptions = Options ;
20
21
21
22
export type {
22
23
// #types-export-injection-marker
Original file line number Diff line number Diff line change 6
6
// Anything between #types-export-injection-marker
7
7
// will be updated using the 'yarn cli integrity' command.
8
8
9
+ import type { Options } from '@dd/core/types' ;
9
10
import * as factory from '@dd/factory' ;
10
11
import webpack from 'webpack' ;
11
12
@@ -16,7 +17,7 @@ export const datadogWebpackPlugin = factory.buildPluginFactory({
16
17
version : pkg . version ,
17
18
} ) . webpack ;
18
19
19
- export type { Options as WebpackPluginOptions } from '@dd/core/types' ;
20
+ export type WebpackPluginOptions = Options ;
20
21
21
22
export type {
22
23
// #types-export-injection-marker
You can’t perform that action at this time.
0 commit comments