mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-24 08:44:21 +01:00
34 lines
774 B
JSON
34 lines
774 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,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
// build optimization
|
|
"incremental": true,
|
|
// plugins
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
// paths alias
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
// typecheck
|
|
"types": ["node", "vitest/globals"],
|
|
"exactOptionalPropertyTypes": false,
|
|
"allowJs": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|