2021-01-03 18:15:44 +05:30
|
|
|
{
|
2021-01-18 02:18:49 +05:30
|
|
|
"compilerOptions": {
|
2023-11-30 13:56:49 +05:30
|
|
|
"sourceMap": true,
|
2021-01-18 02:18:49 +05:30
|
|
|
"outDir": "./dist/",
|
|
|
|
|
"noImplicitAny": true,
|
2025-05-14 23:53:41 +05:30
|
|
|
"noImplicitReturns": true,
|
2021-01-18 02:18:49 +05:30
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "es5",
|
2023-05-19 13:14:32 +05:30
|
|
|
"jsx": "react-jsx",
|
2021-01-18 02:18:49 +05:30
|
|
|
"allowJs": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2024-02-26 18:17:34 +05:30
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2021-01-18 02:18:49 +05:30
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2021-06-25 23:49:53 +05:30
|
|
|
"noEmit": true,
|
2021-08-27 12:21:24 +05:30
|
|
|
"baseUrl": "./src",
|
2024-02-19 09:19:06 +05:30
|
|
|
"paths": {
|
2024-02-26 18:17:34 +05:30
|
|
|
"@constants/*": ["/container/OnboardingContainer/constants/*"]
|
2024-02-19 09:19:06 +05:30
|
|
|
},
|
2022-03-03 19:04:23 +05:30
|
|
|
"downlevelIteration": true,
|
2024-02-13 16:52:28 +05:30
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "typescript-plugin-css-modules"
|
|
|
|
|
}
|
|
|
|
|
],
|
2024-02-26 18:17:34 +05:30
|
|
|
"types": ["node", "jest"]
|
2021-09-23 15:43:43 +05:30
|
|
|
},
|
2025-04-26 20:44:43 +05:30
|
|
|
"exclude": ["node_modules", "src/parser/*.ts"],
|
2022-04-08 14:05:16 +05:30
|
|
|
"include": [
|
|
|
|
|
"./src",
|
2024-02-13 16:52:28 +05:30
|
|
|
"./src/**/*.ts",
|
|
|
|
|
"src/**/*.tsx",
|
|
|
|
|
"src/**/*.d.ts",
|
2022-04-08 14:05:16 +05:30
|
|
|
"./babel.config.js",
|
|
|
|
|
"./jest.config.ts",
|
|
|
|
|
"./.eslintrc.js",
|
|
|
|
|
"./__mocks__",
|
|
|
|
|
"./conf/default.conf",
|
2022-05-03 21:20:36 +05:30
|
|
|
"./public",
|
2022-06-30 02:51:31 +05:30
|
|
|
"./commitlint.config.ts",
|
2022-05-11 01:12:29 +05:30
|
|
|
"./webpack.config.js",
|
2022-06-23 15:26:44 +05:30
|
|
|
"./webpack.config.prod.js",
|
2022-07-13 20:43:36 +05:30
|
|
|
"./jest.setup.ts",
|
2023-09-12 19:20:14 +05:30
|
|
|
"./tests/**.ts",
|
|
|
|
|
"./**/*.d.ts"
|
2022-04-08 14:05:16 +05:30
|
|
|
]
|
2024-02-26 18:17:34 +05:30
|
|
|
}
|