Which files?
You can either use files to be explicit:
{
"files":[
"./some/file.ts"
]
}
or include and exclude to specify files. E.g.:
{
"include":[
"./folder"
],
"exclude":[
"./folder/**/*.spec.ts",
"./folder/someSubFolder"
]
}
Some notes:
- if
filesis specified, other options are ignored **/*(e.g. sample usagesomefolder/**/*) means all folder and any files (the extensions.ts/.tsxwill be included and even.js/.jsxifallowJsis true)