um-react/tsconfig.json
鲁树人 d91e2fffe4
All checks were successful
Build and Deploy / build (push) Successful in 1m45s
chore: bump version to v0.4.7; upgrade deps
2025-03-31 09:37:58 +09:00

34 lines
807 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["vitest/globals", "@testing-library/jest-dom"],
"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,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"esModuleInterop": true,
"paths": {
"~/*": ["./src/*"],
"@sql-wasm": ["./node_modules/sql.js/dist/sql-wasm.wasm"]
}
},
"include": ["src"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}