32 lines
718 B
JSON
32 lines
718 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"target": "ESNext",
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"soapbox/*": ["src/*"],
|
|
},
|
|
"typeRoots": [
|
|
"./src/types",
|
|
"./node_modules/@types",
|
|
"./node_modules"
|
|
],
|
|
"types": [
|
|
"vite/client",
|
|
"vitest/globals",
|
|
"vite-plugin-compile-time/client",
|
|
"@webbtc/webln-types"
|
|
],
|
|
},
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
|
|
}
|