bigbuffet-rw/tsconfig.json

32 lines
645 B
JSON
Raw Normal View History

{
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"sourceMap": true,
"strict": true,
2023-09-13 10:04:17 -07:00
"module": "ESNext",
"lib": ["ESNext", "DOM"],
2023-09-13 10:04:17 -07:00
"target": "ESNext",
"jsx": "react",
"allowJs": true,
"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,
"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",
"vite-plugin-compile-time/client",
"@webbtc/webln-types"
2023-09-13 10:04:17 -07:00
]
2022-07-06 09:26:44 -07:00
}
}