feat: add fastify hybrid pools example
[poolifier.git] / examples / typescript / http-server-pool / fastify-worker_threads / tsconfig.json
1 {
2 "$schema": "https://json.schemastore.org/tsconfig",
3 "compilerOptions": {
4 "target": "ES2022",
5 "module": "ES2022",
6 "moduleResolution": "Node16",
7 "verbatimModuleSyntax": true,
8 "rootDir": "./src",
9 "outDir": "./dist",
10 "typeRoots": ["./node_modules/@types", "./@types"],
11 "esModuleInterop": true,
12 "forceConsistentCasingInFileNames": true,
13 "strict": true,
14 "skipLibCheck": true
15 }
16 }