2026-08-09 15:46:11 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"strict": true,
|
|
|
|
|
"target": "ES2025",
|
2026-08-10 12:19:01 -07:00
|
|
|
"module": "CommonJS",
|
2026-08-09 15:46:11 -07:00
|
|
|
"esModuleInterop": true,
|
2026-08-10 11:48:01 -07:00
|
|
|
"types": ["node"],
|
2026-08-09 15:46:11 -07:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"outDir": "dist/lib",
|
|
|
|
|
"rootDir": "src/ts"
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/ts/**/*.ts"],
|
|
|
|
|
"exclude": ["test/**/*"]
|
|
|
|
|
}
|