um-react/tsconfig.json

38 lines
697 B
JSON
Raw Normal View History

2023-05-07 19:11:16 +00:00
{
"compilerOptions": {
"target": "ESNext",
2023-05-15 20:32:48 +00:00
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
2023-05-07 19:11:16 +00:00
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2023-05-09 00:22:00 +00:00
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
2023-05-15 20:32:48 +00:00
"~/*": [
"src/*"
]
},
2023-05-07 19:11:16 +00:00
},
2023-05-15 20:32:48 +00:00
"include": [
"src"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}