mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-27 18:24:23 +01:00
26 lines
625 B
JSON
26 lines
625 B
JSON
{
|
|
"extends": "@tsconfig/strictest/tsconfig.json",
|
|
"compilerOptions": {
|
|
// transpile target
|
|
"target": "ES2020",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"noEmit": true,
|
|
// module
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
// paths alias
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
// typecheck
|
|
"types": ["node", "vitest/globals", "vite/client"],
|
|
"exactOptionalPropertyTypes": false,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|