f977590675
- Disable checkJs to skip JavaScript type-checking - Only check module.js entry point - Exclude src, scripts, tests from type-checking Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
11 lines
213 B
JSON
11 lines
213 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"noEmit": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["module.js"],
|
|
"exclude": ["node_modules", "dist", "src", "scripts", "tests"]
|
|
}
|