vite-plugins/plugin-bundle-encrypt/tsconfig.json
2026-02-20 11:51:14 -08:00

20 lines
463 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2020"],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"skipLibCheck": true,
"isolatedModules": true
},
"include": ["src"],
"exclude": ["src/__tests__"]
}