cocottetech/@platform/codebase/@features/cache-rebuilder/tsconfig.json
natalie 1b719e1fd7 chore(bootstrap): initial V4 commit
Clean successor to V3 (forge: lilith/atlilith). Seeded from local Mac
working tree at ~/Code/@projects/@cocottetech/. node_modules and build
artifacts excluded via .gitignore.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-18 08:11:41 -07:00

19 lines
479 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./src",
"declaration": false,
"sourceMap": true,
"incremental": true,
"noEmit": false,
"jsx": "preserve"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts", "**/*.test.ts"]
}