mobigrid-module 1.1.1 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +70 -0
- package/dist/index.js.map +1 -0
- package/package.json +5 -3
- package/tsconfig.json +36 -0
package/package.json
CHANGED
@@ -1,9 +1,10 @@
|
|
1
1
|
{
|
2
2
|
"name": "mobigrid-module",
|
3
|
-
"version": "1.1.
|
3
|
+
"version": "1.1.3",
|
4
4
|
"description": "",
|
5
5
|
"type": "module",
|
6
|
-
"main": "
|
6
|
+
"main": "index.tsx",
|
7
|
+
"typings": "index.d.ts",
|
7
8
|
"scripts": {
|
8
9
|
"test": "echo \"Error: no test specified\" && exit 1",
|
9
10
|
"build": "rollup -c"
|
@@ -69,6 +70,7 @@
|
|
69
70
|
"index.tsx",
|
70
71
|
"index.d.ts",
|
71
72
|
"components",
|
72
|
-
"lib"
|
73
|
+
"lib",
|
74
|
+
"tsconfig.json"
|
73
75
|
]
|
74
76
|
}
|
package/tsconfig.json
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"target": "ES5",
|
4
|
+
"module": "ESNext",
|
5
|
+
"declaration": true,
|
6
|
+
"declarationDir": "dist/types",
|
7
|
+
"outDir": "dist",
|
8
|
+
"jsx": "react",
|
9
|
+
"strict": true,
|
10
|
+
"esModuleInterop": true,
|
11
|
+
"skipLibCheck": true,
|
12
|
+
"moduleResolution": "node",
|
13
|
+
"baseUrl": "./",
|
14
|
+
"paths": {
|
15
|
+
"*": [
|
16
|
+
"node_modules/*"
|
17
|
+
]
|
18
|
+
},
|
19
|
+
"typeRoots": [
|
20
|
+
"./node_modules/@types",
|
21
|
+
"./typings"
|
22
|
+
],
|
23
|
+
},
|
24
|
+
"include": [
|
25
|
+
"./**/*",
|
26
|
+
"typings",
|
27
|
+
"components",
|
28
|
+
"lib",
|
29
|
+
"types",
|
30
|
+
"index.tsx"
|
31
|
+
],
|
32
|
+
"exclude": [
|
33
|
+
"node_modules",
|
34
|
+
"dist"
|
35
|
+
]
|
36
|
+
}
|