bigbuffet-rw/packages/pl-fe/tsconfig.json
marcin mikołajczak 7575de54bd Revert pl-fe changes for now
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-10-23 14:37:51 +02:00

31 lines
687 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": {
"pl-fe/*": ["src/*"],
},
"typeRoots": [
"./src/types",
"./node_modules/@types",
"./node_modules"
],
"types": [
"vite/client",
"vitest/globals",
"vite-plugin-compile-time/client"
],
},
"exclude": ["src/**/*.test.ts", "src/**/*.test.tsx"]
}