mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 16:39:42 +00:00
14 lines
419 B
JSON
14 lines
419 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"noEmit": false,
|
|
// Publish declarations so consumer compiler options do not typecheck our TSX implementation.
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["**/*.stories.*", "**/*.test.*", "**/*.mdx"]
|
|
}
|