We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8a8b5f3 + e61fef2 commit 1a5db54Copy full SHA for 1a5db54
packages/preset-base/package.json
@@ -7,9 +7,11 @@
7
"license": "MIT",
8
"repository": "system-ui/theme-ui",
9
"scripts": {
10
- "prepare": "microbundle --no-compress",
11
- "watch": "microbundle watch --no-compress"
+ "prepare": "microbundle --no-compress --tsconfig tsconfig.json",
+ "watch": "microbundle watch --no-compress --tsconfig tsconfig.json"
12
},
13
+ "types": "dist/index.d.ts",
14
+ "source": "src/index.ts",
15
"publishConfig": {
16
"access": "public"
17
}
packages/preset-base/src/index.js renamed to packages/preset-base/src/index.ts
packages/preset-base/tsconfig.json
@@ -0,0 +1,8 @@
1
+{
2
+ "compilerOptions": {
3
+ "resolveJsonModule": true,
4
+ "esModuleInterop": true,
5
+ "moduleResolution": "node",
6
+ "strict": true
+ }
+}
0 commit comments