26 lines
508 B
JSON
26 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"soapbox/*": ["src/*"],
|
|
},
|
|
"types": [
|
|
"vite/client",
|
|
"@webbtc/webln-types"
|
|
]
|
|
}
|
|
}
|