mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-09 17:29:12 +00:00
44 lines
1,016 B
JSON
44 lines
1,016 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"lib": ["ES2023"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true,
|
|
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"packages/*/src/**/*.ts",
|
|
"packages/*/src/**/*.tsx",
|
|
"packages/*/test/**/*.ts",
|
|
"packages/*/test/**/*.tsx",
|
|
"apps/*/src/**/*.ts",
|
|
"apps/*/src/**/*.tsx",
|
|
"apps/*/test/**/*.ts",
|
|
"apps/*/test/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"coverage",
|
|
"packages/kosong/test/type-safety-negative.ts",
|
|
"**/*.disabled/**",
|
|
"**/*.disabled"
|
|
]
|
|
}
|