๐Ÿ“ฆ Kong / httpsnippet

๐Ÿ“„ tsconfig.build.json ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17{
  "compilerOptions": {
    "outDir": "dist",
    "rootDir": "src",
    "allowJs": true,
    "resolveJsonModule": true,
    "strict": true,
    "esModuleInterop": true,
    "downlevelIteration": true,
    "lib": ["ESNext"],
    "declaration": true,
    "declarationMap": true,
  },
  "include": ["src"],
  "exclude": ["dist", "**/*.test.ts"]
}