Files
lifeforge/packages/ui/tsconfig.json
2026-06-25 08:53:34 +08:00

24 lines
572 B
JSON

{
"compilerOptions": {
"target": "es2016",
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["dom", "dom.iterable", "esnext"],
"paths": {
"@/*": ["./src/*"]
},
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"outDir": "dist",
"esModuleInterop": true,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true
},
"include": ["./src/**/*", "./.storybook/*"]
}