merge-tsconfigs 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -0
- package/dist/index.d.ts +7 -0
- package/package.json +18 -18
package/dist/index.cjs
CHANGED
|
@@ -18,6 +18,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
return to;
|
|
19
19
|
};
|
|
20
20
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
25
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
26
|
mod
|
|
23
27
|
));
|
package/dist/index.d.ts
CHANGED
|
@@ -37,7 +37,9 @@ declare const mergeConfigObjects: (tsconfig1: TsConfig, tsconfig2: TsConfig) =>
|
|
|
37
37
|
exclude?: string[] | undefined;
|
|
38
38
|
compilerOptions: {
|
|
39
39
|
[x: string]: string | number | boolean | string[] | (string | number)[] | typescript.PluginImport[] | typescript.ProjectReference[] | type_fest_source_partial_deep.PartialObjectDeep<typescript.MapLike<string[]>, {}> | type_fest_source_partial_deep.PartialObjectDeep<typescript.TsConfigSourceFile, {}> | null | undefined;
|
|
40
|
+
allowImportingTsExtensions?: boolean | undefined;
|
|
40
41
|
allowJs?: boolean | undefined;
|
|
42
|
+
allowArbitraryExtensions?: boolean | undefined;
|
|
41
43
|
allowSyntheticDefaultImports?: boolean | undefined;
|
|
42
44
|
allowUmdGlobalAccess?: boolean | undefined;
|
|
43
45
|
allowUnreachableCode?: boolean | undefined;
|
|
@@ -46,6 +48,7 @@ declare const mergeConfigObjects: (tsconfig1: TsConfig, tsconfig2: TsConfig) =>
|
|
|
46
48
|
baseUrl?: string | undefined;
|
|
47
49
|
charset?: string | undefined;
|
|
48
50
|
checkJs?: boolean | undefined;
|
|
51
|
+
customConditions?: string[] | undefined;
|
|
49
52
|
declaration?: boolean | undefined;
|
|
50
53
|
declarationMap?: boolean | undefined;
|
|
51
54
|
emitDeclarationOnly?: boolean | undefined;
|
|
@@ -60,6 +63,7 @@ declare const mergeConfigObjects: (tsconfig1: TsConfig, tsconfig2: TsConfig) =>
|
|
|
60
63
|
exactOptionalPropertyTypes?: boolean | undefined;
|
|
61
64
|
experimentalDecorators?: boolean | undefined;
|
|
62
65
|
forceConsistentCasingInFileNames?: boolean | undefined;
|
|
66
|
+
ignoreDeprecations?: string | undefined;
|
|
63
67
|
importHelpers?: boolean | undefined;
|
|
64
68
|
importsNotUsedAsValues?: typescript.ImportsNotUsedAsValues | undefined;
|
|
65
69
|
inlineSourceMap?: boolean | undefined;
|
|
@@ -110,6 +114,8 @@ declare const mergeConfigObjects: (tsconfig1: TsConfig, tsconfig2: TsConfig) =>
|
|
|
110
114
|
incremental?: boolean | undefined;
|
|
111
115
|
tsBuildInfoFile?: string | undefined;
|
|
112
116
|
removeComments?: boolean | undefined;
|
|
117
|
+
resolvePackageJsonExports?: boolean | undefined;
|
|
118
|
+
resolvePackageJsonImports?: boolean | undefined;
|
|
113
119
|
rootDir?: string | undefined;
|
|
114
120
|
rootDirs?: string[] | undefined;
|
|
115
121
|
skipLibCheck?: boolean | undefined;
|
|
@@ -130,6 +136,7 @@ declare const mergeConfigObjects: (tsconfig1: TsConfig, tsconfig2: TsConfig) =>
|
|
|
130
136
|
resolveJsonModule?: boolean | undefined;
|
|
131
137
|
types?: string[] | undefined;
|
|
132
138
|
typeRoots?: string[] | undefined;
|
|
139
|
+
verbatimModuleSyntax?: boolean | undefined;
|
|
133
140
|
esModuleInterop?: boolean | undefined;
|
|
134
141
|
useDefineForClassFields?: boolean | undefined;
|
|
135
142
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "merge-tsconfigs",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Merge-tsconfigs is a CLI and node tool for merging tsconfig files into the exact tsconfig file you want 🛣️",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -37,30 +37,30 @@
|
|
|
37
37
|
"update": "codependence --update"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"commander": "
|
|
40
|
+
"commander": "10.0.0",
|
|
41
41
|
"json5": "^2.2.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@commitlint/cli": "
|
|
45
|
-
"@commitlint/config-conventional": "
|
|
46
|
-
"@types/node": "
|
|
47
|
-
"@typescript-eslint/eslint-plugin": "
|
|
48
|
-
"@typescript-eslint/parser": "
|
|
44
|
+
"@commitlint/cli": "17.4.4",
|
|
45
|
+
"@commitlint/config-conventional": "17.4.4",
|
|
46
|
+
"@types/node": "18.15.5",
|
|
47
|
+
"@typescript-eslint/eslint-plugin": "5.56.0",
|
|
48
|
+
"@typescript-eslint/parser": "5.56.0",
|
|
49
49
|
"codependence": "^0.2.6",
|
|
50
|
-
"eslint": "
|
|
51
|
-
"eslint-config-prettier": "
|
|
50
|
+
"eslint": "8.36.0",
|
|
51
|
+
"eslint-config-prettier": "8.8.0",
|
|
52
52
|
"husky": "^8.0.3",
|
|
53
|
-
"lint-staged": "
|
|
53
|
+
"lint-staged": "13.2.0",
|
|
54
54
|
"pnpm": "^7.28.0",
|
|
55
|
-
"prettier": "
|
|
56
|
-
"release-it": "
|
|
57
|
-
"rimraf": "
|
|
58
|
-
"stdouttojson": "
|
|
55
|
+
"prettier": "2.8.5",
|
|
56
|
+
"release-it": "15.9.0",
|
|
57
|
+
"rimraf": "4.4.0",
|
|
58
|
+
"stdouttojson": "0.7.2",
|
|
59
59
|
"ts-node": "^10.9.1",
|
|
60
|
-
"tslib": "
|
|
61
|
-
"tsup": "
|
|
62
|
-
"type-fest": "
|
|
63
|
-
"typescript": "
|
|
60
|
+
"tslib": "2.5.0",
|
|
61
|
+
"tsup": "6.7.0",
|
|
62
|
+
"type-fest": "3.6.1",
|
|
63
|
+
"typescript": "5.0.2",
|
|
64
64
|
"vitest": "^0.28.5"
|
|
65
65
|
},
|
|
66
66
|
"commitlint": {
|