1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-05 23:53:21 +00:00

Remove typescript-transform-paths dependency (#720)

No longer needed - replaced by tsconfig-paths-webpack-plugin
This commit is contained in:
Thomas Rittson
2025-02-17 10:02:19 +10:00
committed by GitHub
parent f146d41b66
commit 99dbb3162e
3 changed files with 1 additions and 37 deletions

30
package-lock.json generated
View File

@@ -103,7 +103,6 @@
"tsconfig-paths-webpack-plugin": "4.2.0", "tsconfig-paths-webpack-plugin": "4.2.0",
"type-fest": "4.32.0", "type-fest": "4.32.0",
"typescript": "5.4.5", "typescript": "5.4.5",
"typescript-transform-paths": "3.5.2",
"webpack": "5.97.1", "webpack": "5.97.1",
"webpack-cli": "6.0.1", "webpack-cli": "6.0.1",
"webpack-merge": "6.0.1", "webpack-merge": "6.0.1",
@@ -21665,35 +21664,6 @@
"node": ">=14.17" "node": ">=14.17"
} }
}, },
"node_modules/typescript-transform-paths": {
"version": "3.5.2",
"resolved": "https://registry.npmjs.org/typescript-transform-paths/-/typescript-transform-paths-3.5.2.tgz",
"integrity": "sha512-IRDVXfU7oscLwTvLabXprFrFCMUdBJbdUDtxbHFEsau9FlqrrdgS8PfwUltKDAh75vJFkQ8QdXAt/nzIWWp+fA==",
"dev": true,
"license": "MIT",
"dependencies": {
"minimatch": "^9.0.5"
},
"peerDependencies": {
"typescript": ">=3.6.5"
}
},
"node_modules/typescript-transform-paths/node_modules/minimatch": {
"version": "9.0.5",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
"integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dev": true,
"license": "ISC",
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/unbox-primitive": { "node_modules/unbox-primitive": {
"version": "1.0.2", "version": "1.0.2",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",

View File

@@ -134,7 +134,6 @@
"tsconfig-paths-webpack-plugin": "4.2.0", "tsconfig-paths-webpack-plugin": "4.2.0",
"type-fest": "4.32.0", "type-fest": "4.32.0",
"typescript": "5.4.5", "typescript": "5.4.5",
"typescript-transform-paths": "3.5.2",
"webpack": "5.97.1", "webpack": "5.97.1",
"webpack-cli": "6.0.1", "webpack-cli": "6.0.1",
"webpack-merge": "6.0.1", "webpack-merge": "6.0.1",

View File

@@ -17,12 +17,7 @@
"paths": { "paths": {
"tldjs": ["@/jslib/src/misc/tldjs.noop"], "tldjs": ["@/jslib/src/misc/tldjs.noop"],
"@/*": ["./*"] "@/*": ["./*"]
}, }
"plugins": [
{
"transform": "typescript-transform-paths"
}
]
}, },
"include": ["src", "jslib", "scripts", "./*.ts"] "include": ["src", "jslib", "scripts", "./*.ts"]
} }