Angular : 什么是tsconfig.json
Posted 技术农夫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Angular : 什么是tsconfig.json相关的知识,希望对你有一定的参考价值。
配
置
01
{
"compileOnSave": true,
// 设置compileOnSave标记,
// 可以让IDE在保存文件的时候根据
// tsconfig.json重新生成文件。
"compilerOptions": {
"baseUrl": "./",
// 解析非相对模块名的基准目录,
// 用于所有模块查找的根路径。
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
// 告诉编译器到哪里去查找模块。
"emitDecoratorMetadata": true,
// 给源码里的装饰器声明加上设计类型元数据。
"experimentalDecorators": true,
// 启用实验性的ES装饰器。
"target": "es5",
// 指定ECMAScript目标版本。
"typeRoots": [
// 要包含的类型声明文件路径列表。
"node_modules/@types"
],
"lib": [ // 编译过程中需要引入的库文件的列表。
"es2017",
"dom"
],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}
}
GitHub应用指南专属小程序
专属工程师的服务指南
好文章 点在看
以上是关于Angular : 什么是tsconfig.json的主要内容,如果未能解决你的问题,请参考以下文章