@microsoft/metrics-ts 0.0.5-alpha.eebec21dd.0 → 0.0.5-alpha.ef1e05412.0

Sign up to get free protection for your applications and to get access to all the features.
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/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Microsoft Teams Framework (TeamsFx)
1
+ Microsoft Teams Toolkit for Visual Studio Code and Teams Toolkit CLI
2
2
 
3
3
  Copyright (c) Microsoft Corporation.
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/metrics-ts",
3
- "version": "0.0.5-alpha.eebec21dd.0",
3
+ "version": "0.0.5-alpha.ef1e05412.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.eebec21dd.0",
31
30
  "@types/chai": "^4.2.21",
32
31
  "@types/mocha": "^8.2.3",
33
32
  "@types/node": "^16.0.0",
@@ -36,6 +35,7 @@
36
35
  "@typescript-eslint/parser": "^4.19.0",
37
36
  "chai": "^4.3.4",
38
37
  "eslint": "^7.22.0",
38
+ "eslint-plugin-header": "^3.1.1",
39
39
  "eslint-plugin-import": "^2.25.2",
40
40
  "eslint-plugin-no-secrets": "^0.8.9",
41
41
  "eslint-plugin-prettier": "^4.0.0",
@@ -43,11 +43,12 @@
43
43
  "mocha": "^9.2.1",
44
44
  "nyc": "^15.1.0",
45
45
  "prettier": "^2.4.1",
46
+ "rimraf": "^5.0.1",
46
47
  "ts-node": "^10.1.0",
47
48
  "tslint": "^6.1.3",
48
49
  "tslint-config-prettier": "^1.18.0",
49
50
  "ttypescript": "^1.5.13",
50
- "typescript": "^4.3.5"
51
+ "typescript": "^5.0.4"
51
52
  },
52
53
  "publishConfig": {
53
54
  "access": "public"
@@ -58,7 +59,10 @@
58
59
  ]
59
60
  },
60
61
  "dependencies": {
62
+ "@types/fs-extra": "^11.0.1",
63
+ "fs-extra": "^11.1.1",
64
+ "tslib": "^2.3.1",
61
65
  "uuid": "^8.3.2"
62
66
  },
63
- "gitHead": "2ab5a572988b36c569b711d2e9d34f4e33bb1b4c"
67
+ "gitHead": "ba5a93a8af3d1b429471588f7123d2174dadc311"
64
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
+ }