You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
578 B

3 months ago
2 months ago
3 months ago
2 months ago
3 months ago
2 months ago
3 months ago
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext", // Handled by Babel
  4. "module": "CommonJS", // Node.js module system
  5. "strict": true, // Enable strict type-checking
  6. "esModuleInterop": true, // Allow default imports from CJS modules
  7. "skipLibCheck": true, // Skip type checking of declaration files
  8. "forceConsistentCasingInFileNames": true,
  9. "outDir": "./dist", // Output directory
  10. "rootDir": "./src", // Source directory
  11. "noEmit": true // No need to emit files, Babel does that
  12. },
  13. "include": ["src/**/*"],
  14. "exclude": ["node_modules", "dist"]
  15. }