platform/packages/platform-rig/profiles/ui/tsconfig.json
Andrey Sobolev c2f77c3fe8
Use direct typescript dependency to prevent 'compile ui' errors (#4691)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-02-19 10:14:12 +07:00

21 lines
421 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"target": "esnext",
"module": "esnext",
"declaration": true,
"rootDir": "./src",
"outDir": "./.build/dist",
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"declarationMap": true,
"sourceMap": true,
"lib": [
"esnext",
"dom"
],
"incremental": true
}
}