2025-09-09 17:41:33 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
2025-09-09 18:16:00 +05:30
|
|
|
"module": "ESNext",
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable", "WebWorker"],
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-09-09 17:41:33 +05:30
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-09-09 18:16:00 +05:30
|
|
|
"strict": true,
|
2025-09-09 17:41:33 +05:30
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
2025-09-09 18:16:00 +05:30
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": false,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src"
|
2025-09-09 17:41:33 +05:30
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"src/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
2025-09-09 18:16:00 +05:30
|
|
|
"dist",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
2025-09-09 17:41:33 +05:30
|
|
|
]
|
|
|
|
|
}
|