mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-09 05:19:32 +08:00
18 lines
481 B
JSON
18 lines
481 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023", "ScriptHost"],
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "es2023"
|
|
},
|
|
"include": ["src/**/*.ts", "extensions/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|