2022-09-27 17:59:05 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noImplicitAny": false,
|
2023-04-04 14:32:53 +08:00
|
|
|
"ignoreDeprecations": "5.0",
|
2022-09-27 17:59:05 +08:00
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2022-11-10 11:19:19 +08:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
"@i18n/*": ["../i18n/*"]
|
2022-09-27 17:59:05 +08:00
|
|
|
}
|
|
|
|
},
|
2022-11-14 10:42:45 +08:00
|
|
|
"include": ["src", "node_modules/@testing-library/jest-dom", "scripts" ]
|
2022-09-27 17:59:05 +08:00
|
|
|
}
|