2019-11-18 23:37:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-10-08 04:00:06 +00:00
|
|
|
"baseUrl": "./src",
|
|
|
|
"paths": {
|
|
|
|
"@root/*": ["./*"],
|
|
|
|
"@assets/*": ["assets/*"],
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@constants/*": ["constants/*"],
|
|
|
|
"@hooks/*": ["hooks/*"],
|
2022-01-21 12:05:46 +00:00
|
|
|
"@i18n/*": ["i18n/*"],
|
2021-10-08 04:00:06 +00:00
|
|
|
"@layouts/*": ["layouts/*"],
|
|
|
|
"@models/*": ["models/*"],
|
|
|
|
"@services/*": ["services/*"],
|
|
|
|
"@themes/*": ["themes/*"],
|
|
|
|
"@utils/*": ["utils/*"],
|
|
|
|
"@views/*": ["views/*"]
|
|
|
|
},
|
2021-09-28 06:27:06 +00:00
|
|
|
"target": "es6",
|
2019-11-18 23:37:36 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2022-06-03 01:46:43 +00:00
|
|
|
"types": ["@types/jest", "vite/client", "vite-plugin-svgr/client"],
|
2019-11-18 23:37:36 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-10-08 04:00:06 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2019-11-18 23:37:36 +00:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2021-10-08 04:00:06 +00:00
|
|
|
"jsx": "react-jsx"
|
2019-11-18 23:37:36 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2021-06-08 00:14:51 +00:00
|
|
|
".*.js",
|
2021-10-08 04:00:06 +00:00
|
|
|
"vite.config.ts",
|
2019-11-18 23:37:36 +00:00
|
|
|
"src",
|
|
|
|
"types"
|
2021-06-19 08:20:43 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"coverage"
|
2019-11-18 23:37:36 +00:00
|
|
|
]
|
2020-11-07 02:06:18 +00:00
|
|
|
}
|