@microsoft/metrics-ts 0.0.5-alpha.e83c26af7.0 → 0.0.5-alpha.f35a1d927.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintrc.js +9 -0
- package/package.json +3 -3
- package/tsconfig.eslint.json +14 -0
package/.eslintrc.js
CHANGED
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.f35a1d927.0",
|
4
4
|
"description": "Add metrics without intruding source code",
|
5
5
|
"keywords": [
|
6
6
|
"Metrics"
|
@@ -27,7 +27,7 @@
|
|
27
27
|
},
|
28
28
|
"devDependencies": {
|
29
29
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
30
|
-
"@microsoft/eslint-plugin-teamsfx": "0.0.4-alpha.
|
30
|
+
"@microsoft/eslint-plugin-teamsfx": "0.0.4-alpha.f35a1d927.0",
|
31
31
|
"@types/chai": "^4.2.21",
|
32
32
|
"@types/mocha": "^8.2.3",
|
33
33
|
"@types/node": "^16.0.0",
|
@@ -61,5 +61,5 @@
|
|
61
61
|
"dependencies": {
|
62
62
|
"uuid": "^8.3.2"
|
63
63
|
},
|
64
|
-
"gitHead": "
|
64
|
+
"gitHead": "b1d2b0f6f8dcccbf4aa10ada65f29332387db76c"
|
65
65
|
}
|
@@ -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
|
+
}
|