16 lines
578 B
JSON
Raw Normal View History

2024-10-17 12:04:13 +05:30
{
"compilerOptions": {
2024-11-08 13:18:25 +05:30
"target": "ESNext", // Handled by Babel
"module": "CommonJS", // Node.js module system
"strict": true, // Enable strict type-checking
"esModuleInterop": true, // Allow default imports from CJS modules
"skipLibCheck": true, // Skip type checking of declaration files
2024-10-17 12:04:13 +05:30
"forceConsistentCasingInFileNames": true,
2024-11-08 13:18:25 +05:30
"outDir": "./dist", // Output directory
"rootDir": "./src", // Source directory
"noEmit": true // No need to emit files, Babel does that
2024-10-17 12:04:13 +05:30
},
2024-11-08 13:18:25 +05:30
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
2024-10-17 12:04:13 +05:30
}