transformers.js/jsconfig.json

13 lines
293 B
JSON

{
// Only include files in the src directory
"include": [
"src/**/*"
],
"compilerOptions": {
// Tells the compiler to check JS files
"checkJs": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "nodenext",
}
}