@microsoft/metrics-ts 0.0.5-alpha.e83c26af7.0 → 0.0.5-alpha.ea55e6d34.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.js +10 -0
- package/package.json +7 -4
- package/tsconfig.eslint.json +14 -0
package/.eslintrc.js
CHANGED
@@ -1,3 +1,13 @@
|
|
1
1
|
module.exports = {
|
2
|
+
parser: "@typescript-eslint/parser",
|
3
|
+
parserOptions: {
|
4
|
+
tsconfigRootDir: __dirname,
|
5
|
+
},
|
2
6
|
extends: ["../eslint-plugin-teamsfx/config/shared.js"],
|
7
|
+
overrides: [
|
8
|
+
{
|
9
|
+
files: ["src/**/*.ts"],
|
10
|
+
extends: ["../eslint-plugin-teamsfx/config/header.js"],
|
11
|
+
},
|
12
|
+
],
|
3
13
|
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@microsoft/metrics-ts",
|
3
|
-
"version": "0.0.5-alpha.
|
3
|
+
"version": "0.0.5-alpha.ea55e6d34.0",
|
4
4
|
"description": "Add metrics without intruding source code",
|
5
5
|
"keywords": [
|
6
6
|
"Metrics"
|
@@ -27,7 +27,6 @@
|
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
29
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
30
|
-
"@microsoft/eslint-plugin-teamsfx": "0.0.4-alpha.e83c26af7.0",
|
31
30
|
"@types/chai": "^4.2.21",
|
32
31
|
"@types/mocha": "^8.2.3",
|
33
32
|
"@types/node": "^16.0.0",
|
@@ -44,11 +43,12 @@
|
|
44
43
|
"mocha": "^9.2.1",
|
45
44
|
"nyc": "^15.1.0",
|
46
45
|
"prettier": "^2.4.1",
|
46
|
+
"rimraf": "^5.0.1",
|
47
47
|
"ts-node": "^10.1.0",
|
48
48
|
"tslint": "^6.1.3",
|
49
49
|
"tslint-config-prettier": "^1.18.0",
|
50
50
|
"ttypescript": "^1.5.13",
|
51
|
-
"typescript": "^
|
51
|
+
"typescript": "^5.0.4"
|
52
52
|
},
|
53
53
|
"publishConfig": {
|
54
54
|
"access": "public"
|
@@ -59,7 +59,10 @@
|
|
59
59
|
]
|
60
60
|
},
|
61
61
|
"dependencies": {
|
62
|
+
"@types/fs-extra": "^11.0.1",
|
63
|
+
"fs-extra": "^11.1.1",
|
64
|
+
"tslib": "^2.3.1",
|
62
65
|
"uuid": "^8.3.2"
|
63
66
|
},
|
64
|
-
"gitHead": "
|
67
|
+
"gitHead": "006733f9b548657c230707e1915ed7c3f1fdf77d"
|
65
68
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
// extend your base config to share compilerOptions, etc
|
3
|
+
"extends": "./tsconfig.json",
|
4
|
+
"compilerOptions": {
|
5
|
+
// ensure that nobody can accidentally use this config for a build
|
6
|
+
"noEmit": true
|
7
|
+
},
|
8
|
+
"include": [
|
9
|
+
// whatever paths you intend to lint
|
10
|
+
"src",
|
11
|
+
"tests"
|
12
|
+
],
|
13
|
+
"exclude": []
|
14
|
+
}
|