soapbox/tsconfig.json

29 lines
622 B
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"sourceMap": true,
"strict": true,
2023-09-13 17:04:17 +00:00
"module": "ESNext",
"lib": ["ESNext", "DOM"],
2023-09-13 17:04:17 +00:00
"target": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
2024-11-09 21:31:19 +00:00
"isolatedModules": true,
2024-11-09 22:40:25 +00:00
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"moduleResolution": "Bundler",
2022-03-25 21:39:26 +00:00
"resolveJsonModule": true,
2022-04-05 20:01:16 +00:00
"esModuleInterop": true,
2023-09-20 23:50:17 +00:00
"skipLibCheck": true,
"paths": {
"soapbox/*": ["src/*"],
},
2023-09-13 17:04:17 +00:00
"types": [
"vite/client",
"@webbtc/webln-types"
2023-09-13 17:04:17 +00:00
]
2022-07-06 16:26:44 +00:00
}
}