brainy/cli-package/tsconfig.json

19 lines
409 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"outDir": "dist",
"declaration": true,
"sourceMap": true,
"skipLibCheck": true,
"paths": {
"@soulcraft/brainy": ["../dist/unified.d.ts"]
}
},
"include": ["src/**/*", "types.d.ts"],
"exclude": ["node_modules", "dist"]
}