maksit-webui/src/tsconfig.json
Maksym Sadovnychyy 6474f1f7c4
Some checks failed
Storybook tests / storybook-tests (push) Has been cancelled
(feature): add FileBrowser/Modal/Loader/Masonry/LightBox/CookieConsent/Ratings/social buttons and core hooks
2026-07-24 15:55:49 +02:00

40 lines
998 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"isolatedModules": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"rootDir": ".",
"outDir": "dist",
"paths": {
"@webui/contracts": ["./contracts/index.ts"],
"@webui/contracts/*": ["./contracts/*"],
"@webui/core": ["./core/index.ts"],
"@webui/core/*": ["./core/*"],
"@webui/components": ["./components/index.ts"],
"@webui/components/*": ["./components/*"]
}
},
"include": [
"contracts",
"core",
"components",
"index.ts",
"test/**/*.ts",
"test/**/*.tsx",
"test/**/*.d.ts"
]
}