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