Widen rootDir from "." to ".." and include push3-transpiler sources so tsc can resolve the ../push3-transpiler/src imports that mutate.ts and test files use. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
332 B
JSON
14 lines
332 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".."
|
|
},
|
|
"include": ["./**/*.ts", "../push3-transpiler/src/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|