- package.json: ESM module config - src/index.ts: Survey client factory with types, validation, offline cache - tsconfig.json: TypeScript configuration Includes offline response caching for resilience
11 lines
210 B
JSON
11 lines
210 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|