Skip to content

Commit 23bb06b

Browse files
committed
chore: Change configs and rename file
1 parent 11a3024 commit 23bb06b

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ node_modules
55
dist
66
coverage
77
.DS_Store
8-
.rts2_cache*
8+
.rts2_cache*
9+
.idea

packages/custom-properties/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
"name": "@theme-ui/custom-properties",
33
"description": "Generate CSS custom properties for use with Theme UI",
44
"version": "0.3.0",
5+
"source": "src/index.ts",
56
"main": "dist/index.js",
67
"module": "dist/index.esm.js",
8+
"types": "dist/index.d.ts",
79
"author": "Alex Page <[email protected]>",
810
"license": "MIT",
911
"scripts": {
10-
"prepare": "microbundle --no-compress",
11-
"watch": "microbundle watch --no-compress"
12+
"prepare": "microbundle --no-compress --tsconfig tsconfig.json",
13+
"watch": "microbundle watch --no-compress --tsconfig tsconfig.json"
1214
},
1315
"publishConfig": {
1416
"access": "public"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"resolveJsonModule": true,
4+
"esModuleInterop": true,
5+
"moduleResolution": "node",
6+
"strict": true
7+
}
8+
}

0 commit comments

Comments
 (0)