clado
Version:
A React state machine based on Context API.
46 lines • 985 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"dom",
"dom.iterable",
"ES2021.String"
],
"module": "esnext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"incremental": true,
"paths": {
"react": [
"./node_modules/@types/react"
],
}
},
"include": [
"src",
"config",
],
"types": [
"node",
"jest",
"@testing-library/jest-dom"
]
}