/ libs / typescript / core / tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "es2022",
 4      "module": "NodeNext",
 5      "moduleResolution": "NodeNext",
 6      "allowJs": true,
 7      "checkJs": true,
 8      "declaration": true,
 9      "outDir": "./dist",
10      "strict": true,
11      "esModuleInterop": true,
12      "skipLibCheck": true,
13      "forceConsistentCasingInFileNames": true
14    },
15    "include": ["src/**/*"]
16  }