2025-04-15 16:28:03 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-09-25 21:52:40 +05:30
|
|
|
"target": "ES2020",
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-08-30 18:34:50 +05:30
|
|
|
"strict": true,
|
2025-04-15 16:28:03 +05:30
|
|
|
"skipLibCheck": true,
|
2025-08-30 18:34:50 +05:30
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-09-25 21:52:40 +05:30
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"noEmitOnError": true,
|
|
|
|
|
"incremental": true,
|
|
|
|
|
"tsBuildInfoFile": ".tsbuildinfo"
|
|
|
|
|
},
|
|
|
|
|
"include": ["packages/*/src/**/*", "app/utils/urlLoads.test.ts", "app/utils/urlLoads.ts"],
|
|
|
|
|
"exclude": ["node_modules", "**/dist", "**/*.test.ts", "**/*.spec.ts"]
|
|
|
|
|
}
|