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.
/dist
1 parent eb2660c commit 5ef9fc7Copy full SHA for 5ef9fc7
.gitignore
@@ -1 +1,2 @@
1
node_modules
2
+dist
package.json
@@ -2,7 +2,8 @@
"name": "css-to-html",
3
"version": "1.0.0",
4
"description": "Generate HTML documents from CSS.",
5
- "main": "index.js",
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
"type": "module",
8
"scripts": {
9
"test": "echo \"Error: no test specified\" && exit 1"
tsconfig.json
@@ -9,9 +9,11 @@
"strict": true,
10
"jsx": "preserve",
11
"sourceMap": true,
12
+ "declaration": true,
13
"resolveJsonModule": true,
14
"isolatedModules": true,
15
"lib": ["ESNext", "DOM"],
- "skipLibCheck": true
16
+ "skipLibCheck": true,
17
+ "outDir": "dist"
18
}
19
0 commit comments