@aws-amplify/ui 2.0.6-custom-pk.165 → 2.0.6-ds-allow-applicable-data.249

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/tsconfig.json +23 -27
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui",
3
- "version": "2.0.6-custom-pk.165+5257ae62d",
3
+ "version": "2.0.6-ds-allow-applicable-data.249+d82091b85",
4
4
  "main": "dist/aws-amplify-ui.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "publishConfig": {
@@ -32,5 +32,5 @@
32
32
  "autoprefixer": {}
33
33
  }
34
34
  },
35
- "gitHead": "5257ae62daf41ca2b80d45196cd7d614a445c073"
35
+ "gitHead": "d82091b85c02867800d3e012977604b8851328cc"
36
36
  }
package/tsconfig.json CHANGED
@@ -1,29 +1,25 @@
1
1
  //WARNING: If you are manually specifying files to compile then the tsconfig.json is completely ignored, you must use command line flags
2
2
  {
3
- "compilerOptions": {
4
- "outDir": "./lib/",
5
- "target": "es5",
6
- "noImplicitAny": false,
7
- "lib": [
8
- "es5",
9
- "es2015",
10
- "dom",
11
- "esnext.asynciterable",
12
- "es2017.object"
13
- ],
14
- "sourceMap": true,
15
- "module": "commonjs",
16
- "moduleResolution": "node",
17
- "allowJs": false,
18
- "declaration": true,
19
- "typeRoots": [
20
- "./node_modules/@types",
21
- "../../node_modules/@types"
22
- ],
23
- // temporary fix
24
- "types": ["node", "lodash"]
25
- },
26
- "include": [
27
- "src/**/*"
28
- ]
29
- }
3
+ "compilerOptions": {
4
+ "outDir": "./lib/",
5
+ "target": "es5",
6
+ "noImplicitAny": false,
7
+ "lib": [
8
+ "es5",
9
+ "es2015",
10
+ "dom",
11
+ "esnext.asynciterable",
12
+ "es2017.object",
13
+ "es2020.promise"
14
+ ],
15
+ "sourceMap": true,
16
+ "module": "commonjs",
17
+ "moduleResolution": "node",
18
+ "allowJs": false,
19
+ "declaration": true,
20
+ "typeRoots": ["./node_modules/@types", "../../node_modules/@types"],
21
+ // temporary fix
22
+ "types": ["node", "lodash"]
23
+ },
24
+ "include": ["src/**/*"]
25
+ }