monorepolint 0.5.0-alpha.12 → 0.5.0-alpha.125
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/package.json +34 -15
- package/tsconfig.json +13 -2
- package/tsconfig.tsbuildinfo +0 -31
- /package/{jest.config.js → jest.config.cjs} +0 -0
package/package.json
CHANGED
|
@@ -1,25 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monorepolint",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.125+a94c83e",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./build/types/index.d.ts",
|
|
8
|
+
"import": "./build/js/index.js"
|
|
9
|
+
},
|
|
10
|
+
"./*": {
|
|
11
|
+
"types": "./build/types/public/*.d.ts",
|
|
12
|
+
"import": "./build/js/public/*.js"
|
|
13
|
+
}
|
|
14
14
|
},
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=18"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {},
|
|
15
19
|
"dependencies": {
|
|
16
|
-
"@monorepolint/cli": "^0.5.0-alpha.
|
|
17
|
-
"@monorepolint/
|
|
18
|
-
"@monorepolint/
|
|
19
|
-
"@monorepolint/
|
|
20
|
+
"@monorepolint/cli": "^0.5.0-alpha.125+a94c83e",
|
|
21
|
+
"@monorepolint/config": "^0.5.0-alpha.125+a94c83e",
|
|
22
|
+
"@monorepolint/core": "^0.5.0-alpha.125+a94c83e",
|
|
23
|
+
"@monorepolint/internal-mrl-config": "^0.5.0-alpha.125+a94c83e",
|
|
24
|
+
"@monorepolint/rules": "^0.5.0-alpha.125+a94c83e",
|
|
25
|
+
"@monorepolint/utils": "^0.5.0-alpha.125+a94c83e"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@jest/globals": "^29.7.0",
|
|
29
|
+
"@types/jest": "^29.5.10",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
31
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
32
|
+
"eslint": "^8.54.0",
|
|
33
|
+
"jest": "^29.7.0",
|
|
34
|
+
"prettier": "^3.1.0",
|
|
35
|
+
"ts-jest": "^29.1.1",
|
|
36
|
+
"tslib": "^2.6.2",
|
|
37
|
+
"tsup": "^8.0.1",
|
|
38
|
+
"typescript": "^5.3.2"
|
|
20
39
|
},
|
|
21
40
|
"publishConfig": {
|
|
22
41
|
"access": "public"
|
|
23
42
|
},
|
|
24
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "a94c83edd6800fbd70dce53643b251fa6b769fd8"
|
|
25
44
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../../tsconfig.base.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"outDir": "./
|
|
5
|
-
"rootDir": "./src"
|
|
4
|
+
"outDir": "./build/js",
|
|
5
|
+
"rootDir": "./src",
|
|
6
|
+
"declarationDir": "./build/types",
|
|
7
|
+
"tsBuildInfoFile": "./build/tsconfig.tsbuildinfo"
|
|
6
8
|
},
|
|
9
|
+
"include": [
|
|
10
|
+
"src"
|
|
11
|
+
],
|
|
7
12
|
"references": [
|
|
8
13
|
{
|
|
9
14
|
"path": "../cli"
|
|
10
15
|
},
|
|
16
|
+
{
|
|
17
|
+
"path": "../config"
|
|
18
|
+
},
|
|
11
19
|
{
|
|
12
20
|
"path": "../core"
|
|
13
21
|
},
|
|
22
|
+
{
|
|
23
|
+
"path": "../internal-mrl-config"
|
|
24
|
+
},
|
|
14
25
|
{
|
|
15
26
|
"path": "../rules"
|
|
16
27
|
},
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"program": {
|
|
3
|
-
"fileInfos": {},
|
|
4
|
-
"options": {
|
|
5
|
-
"target": 5,
|
|
6
|
-
"module": 1,
|
|
7
|
-
"lib": [
|
|
8
|
-
"lib.es2018.d.ts"
|
|
9
|
-
],
|
|
10
|
-
"declaration": true,
|
|
11
|
-
"declarationMap": true,
|
|
12
|
-
"sourceMap": true,
|
|
13
|
-
"composite": true,
|
|
14
|
-
"importHelpers": true,
|
|
15
|
-
"strict": true,
|
|
16
|
-
"noUnusedLocals": true,
|
|
17
|
-
"noUnusedParameters": true,
|
|
18
|
-
"noImplicitReturns": true,
|
|
19
|
-
"noFallthroughCasesInSwitch": true,
|
|
20
|
-
"allowSyntheticDefaultImports": true,
|
|
21
|
-
"esModuleInterop": true,
|
|
22
|
-
"outDir": "./lib",
|
|
23
|
-
"rootDir": "./src",
|
|
24
|
-
"configFilePath": "./tsconfig.json"
|
|
25
|
-
},
|
|
26
|
-
"referencedMap": {},
|
|
27
|
-
"exportedModulesMap": {},
|
|
28
|
-
"semanticDiagnosticsPerFile": []
|
|
29
|
-
},
|
|
30
|
-
"version": "3.6.2"
|
|
31
|
-
}
|
|
File without changes
|