transformers.js/jsconfig.json

18 lines
375 B
JSON
Raw Permalink Normal View History

{
2023-04-23 04:02:08 +08:00
// Only include files in the src directory
"include": [
"src/**/*"
],
"compilerOptions": {
2023-04-23 04:02:08 +08:00
// Tells the compiler to check JS files
"checkJs": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "nodenext",
2023-05-02 23:16:29 +08:00
},
"typeAcquisition": {
"include": [
"jest"
]
}
2023-04-23 04:02:08 +08:00
}