You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soapbox/tsconfig.json

32 lines
645 B

{
"compilerOptions": {
"baseUrl": "./",
"outDir": "dist",
"sourceMap": true,
"strict": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"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"
]
}
}