2024-04-09 16:21:05 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2025-01-04 17:22:46 -07:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2020", "DOM"],
|
|
|
|
"outDir": "./dist",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"strict": true,
|
2024-04-09 16:21:05 +05:30
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
2025-01-04 17:22:46 -07:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true
|
2024-04-09 16:21:05 +05:30
|
|
|
},
|
2025-01-04 17:22:46 -07:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2024-04-09 16:21:05 +05:30
|
|
|
}
|