feat: add HTTP server pool example: express request handler pool
[poolifier.git] / examples / typescript / http-server-pool / express / tsconfig.json
1 {
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "compilerOptions": {
4 "target": "ES2022",
5 "module": "ES2022",
6 "moduleResolution": "Node16",
7 "rootDir": "./src",
8 "outDir": "./dist",
9 "esModuleInterop": true,
10 "forceConsistentCasingInFileNames": true,
11 "strict": true,
12 "skipLibCheck": true
13 }
14 }