Files
ncd-fe/packages/pl-fe/tsconfig.json
nicole mikołajczyk ff0e3cb58b pl-fe: update tsconfig
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-01-06 01:40:31 +01:00

31 lines
668 B
JSON

{
"compilerOptions": {
"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"]
}