2022-02-26 16:13:35 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-18 14:37:15 -07:00
|
|
|
"baseUrl": "./",
|
|
|
|
"outDir": "dist",
|
2022-02-26 16:13:35 -08:00
|
|
|
"sourceMap": true,
|
2022-03-24 12:27:27 -07:00
|
|
|
"strict": true,
|
2023-09-13 10:04:17 -07:00
|
|
|
"module": "ESNext",
|
2024-07-11 05:22:14 -07:00
|
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
2023-09-13 10:04:17 -07:00
|
|
|
"target": "ESNext",
|
2022-02-26 16:13:35 -08:00
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
2024-03-06 15:19:45 -08:00
|
|
|
"moduleResolution": "Bundler",
|
2022-03-25 14:39:26 -07:00
|
|
|
"resolveJsonModule": true,
|
2022-04-05 13:01:16 -07:00
|
|
|
"esModuleInterop": true,
|
2023-09-20 16:50:17 -07:00
|
|
|
"skipLibCheck": true,
|
2023-09-18 14:37:15 -07:00
|
|
|
"paths": {
|
|
|
|
"soapbox/*": ["src/*"],
|
|
|
|
},
|
2023-09-16 12:36:53 -07:00
|
|
|
"typeRoots": [
|
2023-09-18 15:03:23 -07:00
|
|
|
"./src/types",
|
2023-09-16 12:36:53 -07:00
|
|
|
"./node_modules/@types",
|
|
|
|
"./node_modules"
|
|
|
|
],
|
2023-09-13 10:04:17 -07:00
|
|
|
"types": [
|
|
|
|
"vite/client",
|
2023-09-16 12:36:53 -07:00
|
|
|
"vitest/globals",
|
2024-01-22 12:37:44 -08:00
|
|
|
"vite-plugin-compile-time/client",
|
|
|
|
"@webbtc/webln-types"
|
2024-05-11 14:37:37 -07:00
|
|
|
],
|
|
|
|
},
|
|
|
|
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
|
2022-02-26 16:13:35 -08:00
|
|
|
}
|