Skip to content

Commit cf165fb

Browse files
committed
Bump version
1 parent 3b94979 commit cf165fb

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sysdig/backstage-plugin-sysdig",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"main": "dist/index.esm.js",
55
"types": "dist/index.d.ts",
66
"license": "Apache-2.0",
@@ -25,6 +25,7 @@
2525
"dependencies": {
2626
"@backstage/core-components": "^0.14.0",
2727
"@backstage/core-plugin-api": "^1.9.0",
28+
"@backstage/plugin-catalog-react": "^1.13.0",
2829
"@backstage/theme": "^0.5.1",
2930
"@material-ui/core": "^4.9.13",
3031
"@material-ui/icons": "^4.9.1",
@@ -39,10 +40,14 @@
3940
"@backstage/core-app-api": "^1.12.0",
4041
"@backstage/dev-utils": "^1.0.27",
4142
"@backstage/test-utils": "^1.5.0",
42-
"@testing-library/jest-dom": "^5.10.1",
43+
"@testing-library/jest-dom": "^6.5.0",
4344
"@testing-library/react": "^12.1.3",
4445
"@testing-library/user-event": "^14.0.0",
45-
"msw": "^1.0.0"
46+
"@types/jest": "^29.5.13",
47+
"@types/react": "^18.3.9",
48+
"@types/react-dom": "^18.3.0",
49+
"msw": "^1.0.0",
50+
"typescript": "^5.6.2"
4651
},
4752
"files": [
4853
"config.d.ts",

tsconfig.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
1313

1414
/* Language and Environment */
15-
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
15+
"target": "es2019", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
1616
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
1717
// "jsx": "preserve", /* Specify what JSX code is generated. */
1818
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
@@ -56,7 +56,13 @@
5656
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
5757
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
5858
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
59-
"outDir": "./dist-types/src", /* Specify an output folder for all emitted files. */
59+
"outDir": "dist-types", /* Specify an output folder for all emitted files. */
60+
"rootDir": "src",
61+
62+
"emitDeclarationOnly": true, // Optional: Only emit declaration files without compiling JavaScript
63+
"skipLibCheck": true, // Optional: Skips checking types of .d.ts files
64+
"moduleResolution": "node",
65+
6066
// "removeComments": true, /* Disable emitting comments. */
6167
"noEmit": false, /* Disable emitting files from a compilation. */
6268
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
@@ -106,5 +112,6 @@
106112
/* Completeness */
107113
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
108114
"skipLibCheck": true /* Skip type checking all .d.ts files. */
109-
}
115+
},
116+
"include": ["src/**/*"]
110117
}

0 commit comments

Comments
 (0)