mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-09-13 23:37:07 +00:00
24 lines
701 B
JSON
24 lines
701 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"lib": ["ES2023"],
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"]
|
|
},
|
|
"exclude": ["node_modules", "dist", "out", "**/*.disabled/**", "**/*.disabled"]
|
|
}
|