Nychthemeron/packages/library/tsconfig.json
Matthew L McPeak eff75b615b Button (#3)
Reviewed-on: McPeakDev/nychthemeron#3
Co-authored-by: Matthew L McPeak <m.mcpeak98@icloud.com>
Co-committed-by: Matthew L McPeak <m.mcpeak98@icloud.com>
2026-06-08 14:53:51 -04:00

18 lines
417 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"module": "preserve",
"moduleResolution": "bundler",
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"paths": {
"@/*": ["./src/*"],
"~/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.vue", "tests/**/*.ts"],
"exclude": ["dist"]
}