- Add chip, mark, and iconButton recipes with semantic color support - Introduce skeleton pattern and shimmer gradient for loading states - Enhance button and details recipes with refined transition properties - Update border radius tokens to include 'full' and negative spacing values - Refactor details recipe export and semantic color key handling - Bump package version to 0.0.6
41 lines
935 B
JSON
41 lines
935 B
JSON
{
|
|
"include": ["./src/**/*.ts"],
|
|
"compilerOptions": {
|
|
// Environment setup & latest features
|
|
"lib": ["esnext"],
|
|
"target": "es2024",
|
|
"module": "NodeNext",
|
|
"moduleDetection": "auto",
|
|
"allowJs": false,
|
|
|
|
// Bundler mode
|
|
"outDir": "./dist/",
|
|
"moduleResolution": "NodeNext",
|
|
// "verbatimModuleSyntax": true,
|
|
"declaration": true,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
//Paths
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
|
|
//plugins
|
|
"plugins": [
|
|
{ "transform": "typescript-transform-paths" },
|
|
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
|
|
]
|
|
}
|
|
}
|