bigbuffet-rw/packages/pl-fe/tsconfig.json
marcin mikołajczak 4d5690d0c1 Switch to workspace
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-08-28 13:01:08 +02:00

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"]
}