mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-24 22:59:58 -07:00
28 lines
614 B
JSON
28 lines
614 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"skipLibCheck": true,
|
|
"jsxImportSource": "solid-js",
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-pwa/client",
|
|
"vite-plugin-pwa/pwa-assets",
|
|
"vite-plugin-pwa/solid"
|
|
],
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"/src/*": ["src/*"]
|
|
}
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|