soapbox/tsconfig.json

31 lines
650 B
JSON
Raw Normal View History

{
"compilerOptions": {
2023-09-13 17:04:17 +00:00
"target": "ESNext",
2024-11-09 22:56:53 +00:00
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"module": "ESNext",
2023-09-20 23:50:17 +00:00
"skipLibCheck": true,
2024-11-09 22:56:53 +00:00
"outDir": "dist",
"paths": {
2024-11-09 22:56:53 +00:00
"soapbox/*": ["./src/*"],
},
2023-09-13 17:04:17 +00:00
"types": [
"vite/client",
"@webbtc/webln-types"
2024-11-09 22:56:53 +00:00
],
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
2022-07-06 16:26:44 +00:00
}
}