2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-13 17:04:17 +00:00
|
|
|
"target": "ESNext",
|
2024-11-12 15:58:37 +00:00
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
|
|
"module": "ESNext",
|
2023-09-20 23:50:17 +00:00
|
|
|
"skipLibCheck": true,
|
2024-11-12 15:58:37 +00:00
|
|
|
"outDir": "dist",
|
2023-09-18 21:37:15 +00:00
|
|
|
"paths": {
|
2024-11-12 15:58:37 +00:00
|
|
|
"soapbox/*": ["./src/*"],
|
2023-09-18 21:37:15 +00:00
|
|
|
},
|
2023-09-13 17:04:17 +00:00
|
|
|
"types": [
|
|
|
|
"vite/client",
|
2024-01-22 20:37:44 +00:00
|
|
|
"@webbtc/webln-types"
|
2024-11-12 15:58:37 +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
|
|
|
}
|
2022-02-27 00:13:35 +00:00
|
|
|
}
|