38 lines
890 B
JSON
38 lines
890 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"rootDir": "./",
|
|
"baseUrl": "src/",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"assets/*": ["./assets/*"],
|
|
"@components/*": ["./components/*"],
|
|
"@utils/*": ["./utils/*"],
|
|
"@pages/*": ["./pages/*"],
|
|
"@redux/*": ["./redux/*"],
|
|
"@store/*": ["./store/*"],
|
|
"@api/*": ["./api/*"],
|
|
"@hooks/*": ["./hooks/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src", "declaration.d.ts"
|
|
]
|
|
} |