Find the cost of adding an npm package to your app's bundle size
teardown.kelinci.dev
1{
2 "compilerOptions": {
3 "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4 "target": "ES2022",
5 "useDefineForClassFields": true,
6 "module": "ESNext",
7 "lib": ["ESNext", "DOM", "DOM.Iterable"],
8 "types": ["vite/client"],
9 "skipLibCheck": true,
10
11 /* Bundler mode */
12 "moduleResolution": "bundler",
13 "allowImportingTsExtensions": true,
14 "verbatimModuleSyntax": true,
15 "moduleDetection": "force",
16 "noEmit": true,
17 "jsx": "preserve",
18 "jsxImportSource": "solid-js",
19
20 /* Linting */
21 "strict": true,
22 "noUnusedLocals": true,
23 "noUnusedParameters": true,
24 "erasableSyntaxOnly": true,
25 "noFallthroughCasesInSwitch": true,
26 "noUncheckedSideEffectImports": true,
27 "noUncheckedIndexedAccess": true
28 },
29 "include": ["src"]
30}