bigbuffet-rw/tsconfig.json
marcin mikołajczak bece55207a Merge remote-tracking branch 'soapbox/main' into HEAD
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2023-10-15 23:37:02 +02:00

30 lines
629 B
JSON

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