@microsoft/metrics-ts 0.0.5-alpha.e83c26af7.0 → 0.0.5-alpha.ebba7eb40.0

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/.eslintrc.js CHANGED
@@ -1,3 +1,12 @@
1
1
  module.exports = {
2
+ parserOptions: {
3
+ tsconfigRootDir: __dirname,
4
+ },
2
5
  extends: ["../eslint-plugin-teamsfx/config/shared.js"],
6
+ overrides: [
7
+ {
8
+ files: ["src/**/*.ts"],
9
+ extends: ["../eslint-plugin-teamsfx/config/header.js"],
10
+ },
11
+ ],
3
12
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/metrics-ts",
3
- "version": "0.0.5-alpha.e83c26af7.0",
3
+ "version": "0.0.5-alpha.ebba7eb40.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",
@@ -61,5 +60,5 @@
61
60
  "dependencies": {
62
61
  "uuid": "^8.3.2"
63
62
  },
64
- "gitHead": "c5828967571e7001f08a35a2f59535c90c60f8b9"
63
+ "gitHead": "50901701c821f12da858eb87a8941d2d24ddd4c3"
65
64
  }
@@ -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
+ }