Posted on

CKU ,,

{
  "compilerOptions": {
    "target": "es6",
    "module": "commonjs",
    "outDir": "./dist", // or wherever you want TypeScript to output compiled files
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true
  },
  "include": [
    "./src/**/*.ts" // Adjust this path to match your project's directory structure
  ],
  "exclude": [
    "node_modules"
  ]
}