monorepolint 0.5.0-alpha.10 → 0.5.0-alpha.103
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/{jest.config.js → jest.config.cjs} +0 -0
- package/package.json +22 -16
- package/tsconfig.json +13 -2
- package/tsconfig.tsbuildinfo +0 -31
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,25 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monorepolint",
|
|
3
|
-
"version": "0.5.0-alpha.
|
|
3
|
+
"version": "0.5.0-alpha.103+241c1b6",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"clean": "rm -rf build lib node_modules *.tgz",
|
|
7
|
-
"compile:typescript": "../../node_modules/.bin/tsc",
|
|
8
|
-
"jest:watch": "../../node_modules/.bin/jest --config ../../jest.config.js --watch",
|
|
9
|
-
"jest": "../../node_modules/.bin/jest --config ../../jest.config.js",
|
|
10
|
-
"lint:typescript": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
|
|
11
|
-
"lint": "../../node_modules/.bin/tslint --config ../../tslint.json --project .",
|
|
12
|
-
"test:watch": "../../node_modules/.bin/jest --colors --passWithNoTests --watch",
|
|
13
|
-
"test": "../../node_modules/.bin/jest --colors --passWithNoTests"
|
|
14
|
-
},
|
|
5
|
+
"scripts": {},
|
|
15
6
|
"dependencies": {
|
|
16
|
-
"@monorepolint/cli": "^0.5.0-alpha.
|
|
17
|
-
"@monorepolint/
|
|
18
|
-
"@monorepolint/
|
|
19
|
-
"@monorepolint/
|
|
7
|
+
"@monorepolint/cli": "^0.5.0-alpha.103+241c1b6",
|
|
8
|
+
"@monorepolint/config": "^0.5.0-alpha.103+241c1b6",
|
|
9
|
+
"@monorepolint/core": "^0.5.0-alpha.103+241c1b6",
|
|
10
|
+
"@monorepolint/internal-mrl-config": "^0.5.0-alpha.103+241c1b6",
|
|
11
|
+
"@monorepolint/rules": "^0.5.0-alpha.103+241c1b6",
|
|
12
|
+
"@monorepolint/utils": "^0.5.0-alpha.103+241c1b6"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@jest/globals": "^29.3.1",
|
|
16
|
+
"@types/jest": "^29.2.4",
|
|
17
|
+
"@typescript-eslint/eslint-plugin": "^5.45.1",
|
|
18
|
+
"@typescript-eslint/parser": "^5.45.1",
|
|
19
|
+
"eslint": "^8.29.0",
|
|
20
|
+
"jest": "^29.3.1",
|
|
21
|
+
"prettier": "^2.8.0",
|
|
22
|
+
"ts-jest": "^29.0.3",
|
|
23
|
+
"tslib": "^2.4.1",
|
|
24
|
+
"tsup": "^6.5.0",
|
|
25
|
+
"typescript": "^4.9.3"
|
|
20
26
|
},
|
|
21
27
|
"publishConfig": {
|
|
22
28
|
"access": "public"
|
|
23
29
|
},
|
|
24
|
-
"gitHead": "
|
|
30
|
+
"gitHead": "241c1b6bcf55ee188dd2ee3f652de4c91e0817aa"
|
|
25
31
|
}
|
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
|
-
}
|