๐Ÿ“ฆ nestjs / nest

๐Ÿ“„ tsconfig.json ยท 18 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18{
  "compilerOptions": {
    "module": "commonjs",
    "declaration": true,
    "removeComments": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "target": "ES2021",
    "sourceMap": true,
    "outDir": "./dist",
    "baseUrl": "./",
    "incremental": true,
    "skipLibCheck": true
  },
  "include": ["src/**/*"]
}