Files
Ben Burns 72b740ffcf break: remove winston in favor of the debug package (#25)
* break: remove winston in favor of the debug package
* fix: add missing test coverage dev dependency
2025-03-19 18:36:14 +13:00

19 lines
556 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"sourceMap": true,
"downlevelIteration": true,
"noEmit": true, // we just want type checking - no need to output for inclusion in the published module
"resolveJsonModule": true
},
"include": ["examples/**/*", "src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}