um-react/tsconfig.json

34 lines
779 B
JSON
Raw Normal View History

2023-05-07 19:11:16 +00:00
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vitest/globals", "@testing-library/jest-dom"],
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": ".",
"esModuleInterop": true,
2023-05-09 00:22:00 +00:00
"paths": {
"~/*": ["./src/*"],
"@nm/*": ["./node_modules/*"]
}
2023-05-07 19:11:16 +00:00
},
"include": ["src"],
2023-05-15 20:32:48 +00:00
"references": [
{
"path": "./tsconfig.node.json"
}
]
}