mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-05-16 01:12:46 +00:00
21 lines
480 B
JSON
21 lines
480 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noEmit": false,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts"],
|
|
"exclude": ["dist", "../dist", "../node_modules"]
|
|
}
|