extends

Seulyi Yoo·2022년 7월 15일
0

TypeScript

목록 보기
26/42
post-thumbnail
{
	...,
	"extendsDefinition": {
		"properties" : {
			"extends": {
				"description": "Path to base configuration file to inferit from. Requires TypeScript version 2.1 of later",
				"type": "string"
			}
		}
	},
	...,
}

extends?

  • 파일(상대)경로명: string
  • TypeScript 2.1 New Spec
// in PROJECT/base.json
{
	"compilerOptions": {
		"strict": true
	}
}

// in PROJECT/tsconfig.json
{
	"extends": "./base.json"
}

https://github.com/tsconfig/bases

npm install —save-dev @tsconfig/deno

{
	"extends": "@tsconfig/deno/tsconfig.json",
	...
}
profile
성장하는 개발자 유슬이 입니다!

0개의 댓글