I\'m working on a project structured like this:
\\
|- built
|- src
|- perf
|- tsconfig.json
|- typings
|- tsconfig.json
My tsconfi
Is there a way to tell TypeScript where to look for typings
Move typings
into pref.
Use filesGlob
once it is supported in tsc
: https://github.com/Microsoft/TypeScript/issues/1927
you can do this by extending your base tsconfig.json file:
tsconfig extension
just do not exclude directories in the base tsconfig.json and typescript should be able to resolve your typings for you (know this is true using node_modules/@types, or the typings module)
For example:
configs/base.json:
{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true
}
}
tsconfig.json:
{
"extends": "./configs/base",
"files": [
"main.ts",
"supplemental.ts"
]
}
tsconfig.nostrictnull.json:
{
"extends": "./tsconfig",
"compilerOptions": {
"strictNullChecks": false
}
}