mirror of
https://github.com/MAKS-IT-COM/maksit-webui.git
synced 2026-08-15 09:58:09 +02:00
40 lines
998 B
JSON
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"
|
|
]
|
|
}
|