⚡ Zero-dependency plcbundle library exclusively for Bun
1{
2 "compilerOptions": {
3 "target": "ESNext",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "lib": ["ESNext"],
7 "types": ["bun-types"],
8 "strict": true,
9 "esModuleInterop": true,
10 "skipLibCheck": true,
11 "forceConsistentCasingInFileNames": true,
12 "resolveJsonModule": true,
13 "allowSyntheticDefaultImports": true,
14 "outDir": "./dist"
15 },
16 "include": ["src/**/*"],
17 "exclude": ["node_modules"]
18}