Skip to content

Commit a5a727f

Browse files
committed
📝 Updated installation guide
1 parent 4b3b771 commit a5a727f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,34 @@ Compile Brixi CSS.
176176

177177
```
178178
npm run install:brixi
179+
```
180+
181+
Create the TypeScript config.
182+
183+
```json
184+
{
185+
"compilerOptions": {
186+
"target": "ES2020",
187+
"lib": [
188+
"DOM",
189+
"ES2020"
190+
],
191+
"allowJs": true,
192+
"checkJs": false,
193+
"module": "ES2020",
194+
"moduleResolution": "Node",
195+
"baseUrl": "src",
196+
"paths": {
197+
"~brixi/*": [
198+
"framework/*"
199+
]
200+
},
201+
"declaration": true,
202+
"emitDeclarationOnly": true,
203+
"outDir": "_types",
204+
},
205+
"include": [
206+
"src"
207+
]
208+
}
179209
```

0 commit comments

Comments
 (0)