37 lines
750 B
JSON
37 lines
750 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@/types/*": [
|
|
"./src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |