forked from mirage-borderless/lib-nestjs-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 810 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"compilerOptions": {
"removeComments": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2022",
"sourceMap": true,
"resolveJsonModule": true,
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"baseUrl": "./",
"declaration": true,
"moduleResolution": "node",
"module": "commonjs"
},
"lib": ["decorators","dom","scripthost","ES2023"],
"include": [
"src/**/*",
"node_modules/@fastify/cookie/types/plugin.d.ts",
"node_modules/@fastify/view/types/index.d.ts",
"node_modules/fastify-plugin/types/plugin.d.ts"
],
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
}