2024-10-30 01:08:52 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-11-03 01:12:09 +05:30
|
|
|
"target": "es2020",
|
2024-10-30 01:08:52 +05:30
|
|
|
"module": "commonjs",
|
|
|
|
|
"outDir": "./dist",
|
2024-10-30 02:03:44 +05:30
|
|
|
"rootDir": "../",
|
2024-10-30 01:08:52 +05:30
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-10-30 02:03:44 +05:30
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"baseUrl": "../",
|
|
|
|
|
"paths": {
|
|
|
|
|
"*": ["*"],
|
|
|
|
|
"src/*": ["src/*"]
|
|
|
|
|
},
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
|
"allowJs": true
|
2024-10-30 01:08:52 +05:30
|
|
|
},
|
2024-10-30 02:03:44 +05:30
|
|
|
"include": [
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"../src/shared/**/*",
|
2024-11-03 01:12:09 +05:30
|
|
|
"../src/helpers/**/*",
|
2024-10-30 02:03:44 +05:30
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"../src/components/**/*", // Exclude frontend components
|
|
|
|
|
"../src/pages/**/*", // Exclude frontend pages
|
2024-11-03 01:12:09 +05:30
|
|
|
"../src/app/**/*", // Exclude other frontend-specific code
|
2024-10-30 02:03:44 +05:30
|
|
|
]
|
2024-10-30 01:08:52 +05:30
|
|
|
}
|