"files":{}
property to the tsconfig.json
file. I've done so via the "filesGlob":[]
property and the auto-generated file list includes the file in question. I've even gone as far as to relocated the project to a path with no spaces wondering if that is the source of the issue. At this point, I've run out of options and welcome any suggestions.
hi all!. quick question..
it seems like node_modules content gets compiled and spits out tons of errors when run build (F6)
,
that's in spite of my jsconfig.json
having"exclude": [
"node_modules/*",
"examples/*"
]
have also tried "files": [
"src/app/app.ts",
}
nothing sticks. still lots of:
ideas?..
tsconfig.json
issues this morning as well.
!node_modules/**
to the "filesGlob":[]
property and then have it rebuild the file list?
files
property at all? supposedly this will force it to include any and all files
!node_modules/**
didn't help either btw
files
to include all that's under node_modules/**
funny the !
didn't catch on
filesGlob:[]
is following the ignores.
files:{}
and excludes:{}
and re-generating them from the filesGlob:[]
property?
"fileGlobs":[]
property, otherwise it will not generate the "files":{}
property.
"filesGlob": [
"src/**"
]
but it just seem to cause the build progress to start and just hang in there.. so weird
@proff321
Tips : files
and exclude
(note not excludes
... and I did argue for it ... https://github.com/Microsoft/TypeScript/pull/3188#issuecomment-102720217 but they went with exclude ¯\_(ツ)_/¯
) are both arrays ... so files:{}
is bad files:[]
is good (same for exclude). Also `exclude
should just be directory name ("exclude": [ "node_modules", "examples" ]
)