gpt4 book ai didi

angular - tsconfig.spec.json 有什么作用?

转载 作者:行者123 更新时间:2023-12-04 04:29:39 24 4
gpt4 key购买 nike

我见过thisthis帖子让我明白了 tsconfig.app.jsontsconfig.json .
我有一个 angular 应用程序,它有 tsconfig.app.json , tsconfig.jsontsconfig.spec.jsontsconfig.spec.json的作用是什么? ? 'spec' 有什么用在 tsconfig.spec.json代表?

最佳答案

它是应用程序测试的 TypeScript 配置。
例如下面的代码你说

"types": ["jasmine", "node"]
我将使用 jasmine 在 nodejs 环境中进行测试。
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"module": "commonjs",
"target": "es5",
"baseUrl": "",
"types": [
"jasmine",
"node"
]
},
"files": [
"test.ts",
"polyfills.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
]
}

关于angular - tsconfig.spec.json 有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62608182/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com