@spaced-out/ui-design-system
Version:
Sense UI components library
24 lines (21 loc) • 552 B
JSON
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"declaration": true,
"declarationMap": true,
"outDir": "lib",
// keep the alias visible to the emitter so paths land in .d.ts,
// then we'll rewrite them to relative with `tsc-alias`
"baseUrl": ".",
"paths": {
"src/*": ["src/*"]
},
// (optional but nice to have)
"rootDir": "src",
"noEmitOnError": false
},
"include": ["src/**/*"],
"exclude": ["**/__tests__/**", "**/*.stories.*"]
}