"Tsconfig.app.json"의 두 판 사이의 차이

(새 문서: ==개요== {{소문자}} ;tsconfig.app.json ==같이 보기== * tsconfig.json 분류: TypeScript 분류: .json)
 
 
2번째 줄: 2번째 줄:
{{소문자}}
{{소문자}}
;tsconfig.app.json
;tsconfig.app.json
<syntaxhighlight lang='json'>
{
  "extends": "@vue/tsconfig/tsconfig.dom.json",
  "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  "exclude": ["src/**/__tests__/*"],
  "compilerOptions": {
    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
    "paths": {
      "@/*": ["./src/*"]
    }
  }
}
</syntaxhighlight>


==같이 보기==
==같이 보기==

2025년 2월 1일 (토) 20:01 기준 최신판

1 개요[ | ]

tsconfig.app.json
json
Copy
{
  "extends": "@vue/tsconfig/tsconfig.dom.json",
  "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  "exclude": ["src/**/__tests__/*"],
  "compilerOptions": {
    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",

    "paths": {
      "@/*": ["./src/*"]
    }
  }
}

2 같이 보기[ | ]