mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-26 19:09:52 +00:00
21 lines
402 B
JSON
21 lines
402 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
/* Test files should not be compiled */
|
|
"noEmit": true,
|
|
// "strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"*.mts",
|
|
"*.config.js",
|
|
"browser_tests/**/*.ts",
|
|
"scripts/**/*.js",
|
|
"scripts/**/*.ts",
|
|
"tests-ui/**/*.ts"
|
|
]
|
|
}
|