Add @obelisk-apps/cli with the existing build, search, query, and attune contract plus official skill installation. Separate the docs-only skill artifact, bootstrap installer, release layout, cross-platform CI, and package-level regression coverage.
29 lines
676 B
JSON
29 lines
676 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["ES2023"],
|
|
"types": ["node"],
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"erasableSyntaxOnly": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["packages/core/src/**/*", "packages/cli/src/**/*", "tests/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"app",
|
|
"dist",
|
|
"release",
|
|
"tests/app-*.test.mjs",
|
|
"tests/recap-capture-query.test.mjs"
|
|
]
|
|
}
|