{
...,
"extendsDefinition": {
"properties" : {
"extends": {
"description": "Path to base configuration file to inferit from. Requires TypeScript version 2.1 of later",
"type": "string"
}
}
},
...,
}
// in PROJECT/base.json
{
"compilerOptions": {
"strict": true
}
}
// in PROJECT/tsconfig.json
{
"extends": "./base.json"
}
https://github.com/tsconfig/bases
{
"extends": "@tsconfig/deno/tsconfig.json",
...
}