Find the cost of adding an npm package to your app's bundle size
teardown.kelinci.dev
1{
2 "$schema": "https://unpkg.com/oxfmt/configuration_schema.json",
3
4 "trailingComma": "all",
5 "useTabs": true,
6 "tabWidth": 2,
7 "printWidth": 110,
8 "semi": true,
9 "singleQuote": true,
10 "bracketSpacing": true,
11
12 "sortImports": {
13 "groups": [["builtin"], ["external"], ["parent"], ["sibling", "index"]]
14 },
15 "sortTailwindcss": {
16 "stylesheet": "src/index.css",
17 "functions": ["tw", "clsx"],
18 "attributes": ["class", "className", "classList"]
19 },
20
21 "overrides": [
22 {
23 "files": ["tsconfig.json", "tsconfig.*.json"],
24 "options": {
25 "parser": "jsonc"
26 }
27 },
28 {
29 "files": ["*.md"],
30 "options": {
31 "printWidth": 100,
32 "proseWrap": "always"
33 }
34 }
35 ]
36}