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.
1 parent 4b3b771 commit a5a727fCopy full SHA for a5a727f
README.md
@@ -176,4 +176,34 @@ Compile Brixi CSS.
176
177
```
178
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
+}
209
0 commit comments