38 lines
823 B
JSON
38 lines
823 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ES2020"],
|
|
"jsx": "react-jsx",
|
|
"target": "ES2020",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"useDefineForClassFields": true,
|
|
|
|
/* modules */
|
|
"module": "ESNext",
|
|
"moduleDetection": "force",
|
|
"moduleResolution": "bundler",
|
|
"verbatimModuleSyntax": false,
|
|
"resolveJsonModule": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
/* type checking */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@mocks/*": ["./__mocks__/*"]
|
|
},
|
|
"types": ["jest", "@testing-library/jest-dom"]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"__mocks__",
|
|
"configs",
|
|
"eslint.config.ts",
|
|
"rsbuild.config.ts",
|
|
"jest.config.ts"
|
|
]
|
|
}
|