Closed
Description
Our friends from @angular asked for this feature while they were visiting last week, since they use a lot of configuration files internally.
Proposal
Add a new top-level (alongside compilerOptions, files, includes, and excludes) tsconfig
parameter - extends
(to steal the term from eslint
).
- Its value is a string or an array of strings which are interpreted as rooted or relative paths (so starting with either a drive root or
.
or..
) from the current tsconfig to other tsconfigs to inherit from - with or without a.json
extension, if no extension is provided, we first look for an extensionless file by the name, and failing that, add a .json extension and look for that. - If we add recommended or built-in configs to inherit from in the future, those will look like a module identifier, rather than a path (ie,
"typescript/strict"
). For now, non-relative, non-rooted paths will be an error. At present, built-in or shareable configs are not part of this proposal. - All configs your config inherits from are first parsed and resolved (thereby filling in anything they inherit), and then merged. Configs later in the list override the configuration provided by those earlier in the list. Configuration in the active config can override those provided by an inheriting config. If a circularity is encountered, we report an error.
- If any inherited configs we load have errors, we will report them.
- Top-level members other than
compilerOptions
are completely overridden by following definitions.compilerOptions
at the top level is merged (though its individual keys will still be overridden as though they were top-level keys). - Relative paths found in the configuration file will be resolved relative to the configuration file they originated in.
Examples
configs/base.json
:
{
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
"strictNullChecks": true
}
}
configs/tests.json
:
{
"compilerOptions": {
"preserveConstEnums": true,
"stripComments": false,
"sourceMaps": true
},
"exclude": [
"../tests/baselines",
"../tests/scenarios"
],
"include": [
"../tests/**/*.ts"
]
}
tsconfig.json
:
{
"extends": "./configs/base",
"files": [
"main.ts",
"supplemental.ts"
]
}
tsconfig.nostrictnull.json
:
{
"extends": "./tsconfig"
"compilerOptions": {
"strictNullChecks": false
}
}
tsconfig.tests.json
:
{
"extends": ["./configs/tests", "./tsconfig"],
"compilerOptions": {
"module": "commonjs"
}
}
tsconfig.tests.browser.json
:
{
"extends": ["./configs/tests", "./tsconfig"],
"compilerOptions": {
"module": "amd"
}
}
@alexeagle @DanielRosenwasser Does this cover your usecases?