2025-07-02 11:55:44 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
2025-07-18 12:00:50 -07:00
|
|
|
"noImplicitAny": false,
|
2025-07-02 11:55:44 -07:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
2025-07-02 12:15:35 -07:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@soulcraft/brainy": ["../dist/unified.d.ts"]
|
|
|
|
|
}
|
2025-07-02 11:55:44 -07:00
|
|
|
},
|
2025-07-02 12:15:35 -07:00
|
|
|
"include": ["src/**/*", "types.d.ts"],
|
2025-07-02 11:55:44 -07:00
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|