You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,20 @@
2
2
"name": "@microsoft/feature-management",
3
3
"version": "1.0.0-preview",
4
4
"description": "Feature Management is a library for enabling/disabling features at runtime. Developers can use feature flags in simple use cases like conditional statement to more advanced scenarios like conditionally adding routes.",
5
-
"main": "index.js",
5
+
"main": "dist/index.js",
6
+
"module": "./dist-esm/index.js",
7
+
"types": "types/index.d.ts",
8
+
"files": [
9
+
"dist/**/*.js",
10
+
"dist/**/*.map",
11
+
"dist/**/*.d.ts",
12
+
"dist-esm/**/*.js",
13
+
"dist-esm/**/*.map",
14
+
"dist-esm/**/*.d.ts",
15
+
"types/**/*.d.ts",
16
+
"LICENSE",
17
+
"README.md"
18
+
],
6
19
"scripts": {
7
20
"build": "npm run clean && npm run build-cjs && npm run build-esm && npm run build-test",
0 commit comments