@microsoft/metrics-ts 0.0.5-alpha.e83c26af7.0 → 0.0.5-alpha.e92fb7848.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.e83c26af7.0",
3
+ "version": "0.0.5-alpha.e92fb7848.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": "^4.3.5"
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": "c5828967571e7001f08a35a2f59535c90c60f8b9"
67
+ "gitHead": "7019c9b88433b9f7a36a9ec7cc2ca1b390e35ea5"
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
+ }