platform/packages/platform-rig/profiles/ui/tsconfig.json
Andrey Sobolev 5cadf883c0
Add apply-templates check (#4907)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
Co-authored-by: Eduard Aksamitov <e@euaaaio.ru>
2024-03-11 11:24:46 +07:00

23 lines
473 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,
"types": ["jest"],
"isolatedModules": true
}
}