๐Ÿ“ฆ Kong / kongponents

๐Ÿ“„ tsconfig.json ยท 30 lines
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
29
30{
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "rootDir": ".",
    "outDir": "../bin",
    "moduleResolution": "node",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "allowImportingTsExtensions": false,
    "noEmit": false,
    "skipLibCheck": true,
    "resolveJsonModule": true,
    "types": [
      "@types/inquirer",
      "@types/node"
    ]
  },
  "include": [
    "./*.ts",
    "./utils/*.ts",
  ],
  "exclude": [
    "./template"
  ]
}