mirror of
https://github.com/sern-handler/handler
synced 2026-06-05 17:06:53 +00:00
* progress on better error handling * wiring onError callback through module loader and resolver * fix error callbacks not being stored * update onError to be record * type alias * wiring * seems to work * update error handling contract and wire more * add command error builder * fix merge * progress on error handling * naive onError handling, not tested * progres * proress * progress on abstracting away iti * seems to work * fix tests * better typings * add doc * abstracting iti * remove onerror for this pr * feat: better way to add dependencies * fix tests
20 lines
551 B
JSON
20 lines
551 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"preserveSymlinks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"module": "esnext",
|
|
"target": "esnext"
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": ["./src", "./src/**/*.d.ts"]
|
|
}
|