TypeScript/tests/cases/user/content-disposition/tsconfig.json
Nathan Shively-Sanders acac035aed
Add missing index.ts files to user projects (#39163)
This makes the language service treat .js files inside node_modules as
part of the parent project, so that you can view the same errors in the
editor as you see in the baselines.

Also update a comment in the parser that I missed in an earlier PR.
2020-06-22 08:46:14 -07:00

22 lines
435 B
JSON

{
"compilerOptions": {
"noImplicitAny": false,
"noImplicitThis": false,
"maxNodeModuleJsDepth": 0,
"strict": true,
"noEmit": true,
"allowJs": true,
"checkJs": true,
"types": [
"node"
],
"lib": [
"esnext",
"dom"
]
},
"include": [
"node_modules/content-disposition",
"index.ts"
]
}