- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试在我的 TypeScript 应用程序中导入 package.json
:
import packageJson from '../package.json';
我的 tsconfig.json
包含以下内容:
{
"compilerOptions": {
"rootDir": "./src/"
"outDir": "./dist/",
"baseUrl": ".",
"resolveJsonModule": true
}
}
问题是当我编译这个的时候,我得到了
error TS6059: File '/path/to/package.json' is not under 'rootDir' '/path/to/app/src/'. 'rootDir' is expected to contain all source files.
我不确定我是否理解这个问题,因为 ./src/
和 /.dist
具有相同的父级 ..
,因此 TypeScript 可以不理会 import '../package.json'
并且 它可以从 rootDir
或 outDir 中工作
。
无论如何,我已经尝试了以下方法,但结果并不令人满意:
rootDir
- 编译有效,但 dist
将包含 dist/src
,这是我不想要的outDir
- 然后 src
被 .js
文件(和 .js.map
污染,如果 sourceMap
是真的)@ts-ignore
- 编译停止导入 ../package.json
此限制的解决方法是什么,将生成的文件保存在 dist
中,并允许从 rootDir
的父目录导入?
最佳答案
这是可能的,事实证明,不难。
解决方案不明显的原因是因为 typescript 依赖于 rootDir
来决定输出的目录结构(参见 this comment from Typescript's bossman ),并且只包含代码可以导入输出或包依赖项。
rootDir
设置为项目的根目录,package.json
将发送到 outDir
的根目录并可以导入。但是随后您编译的 src
文件将写入 outDir/src
。rootDir
设置为src
,那里的文件将编译到outDir
的根目录。但是现在the compiler won't have a place to emit package.json
,所以它发出“一个错误,因为项目似乎配置错误”(老板的话)。Typescript 项目 由tsconfig 文件定义,是独立的,并且有效地 受其rootDir< 限制
。这是一件非常好的事情,因为它符合封装原则。
您可以有多个项目(例如,一个主项目和一组库),每个项目都在它们自己的目录中,并且有它们自己的 tsconfig。它们之间的依赖关系使用 Typescript 在 tsconfig 文件中声明 Project References .
I admit, the term "projects" is a poor one, as intuitively it refers to the whole shebang, but "modules" and "packages" are already taken in this context. Think of them as "subprojects" and it will make more sense.
我们会将 src
目录和包含 package.json
的根目录视为单独的项目。每个都有自己的 tsconfig
文件。
为 src
目录提供自己的项目。
./src/tsconfig.json
:
{
"compilerOptions": {
"rootDir": ".",
"outDir": "../dist/",
"resolveJsonModule": true
},
"references": [ // this is how we declare a dependency from
{ "path": "../" } // this project to the one at the root dir`
]
}
给根目录它自己的项目。
./tsconfig.json
:
{
"compilerOptions": {
"rootDir": ".",
"outDir": ".", // if out path for a file is same as its src path, nothing will be emitted
"resolveJsonModule": true,
"composite": true // required on the dependency project for references to work
},
"files": [ // by whitelisting the files to include, TS won't automatically
"package.json" // include all source below root, which is the default.
]
}
运行 tsc --build src
瞧瞧!
这将构建src
项目。因为它声明了对根项目的引用,所以它也会构建那个项目,但前提是它已过时。因为根 tsconfig 与 outDir
具有相同的目录,所以 tsc 将不会对 package.json
做任何事情,它被配置为编译的一个文件。
您可以通过将模块/库/子项目放在它们自己的子目录中并为它们提供自己的 tsconfig 来隔离模块/库/子项目。
您可以使用 Project References 显式管理依赖项,以及模块化构建:
来自链接文档:
您可以大大缩短构建时间
A long-awaited feature is smart incremental builds for TypeScript projects. In 3.0 you can use the
--build
flag withtsc
. This is effectively a new entry point fortsc
that behaves more like a build orchestrator than a simple compiler.Running
tsc --build
(tsc -b
for short) will do the following:
- Find all referenced projects
- Detect if they are up-to-date
- Build out-of-date projects in the correct order
Don’t worry about ordering the files you pass on the commandline -
tsc
will re-order them if needed so that dependencies are always built first.
强制组件之间的逻辑分离
以新的更好的方式组织您的代码。
这也很简单:
用于共享选项和构建所有内容的根 tsconfig
使用简单的 tsc --build
命令创建子项目(使用 --force
从头开始构建它们)
src/tsconfig.json
{
"compilerOptions": {
"outDir": ".", // prevents this tsconfig from compiling any files
// we want subprojects to inherit these options:
"target": "ES2019",
"module": "es2020",
"strict": true,
...
},
// configure this project to build all of the following:
"references": [
{ "path": "./common" }
{ "path": "./projectA" }
]
}
一个“公共(public)”库被阻止从其他子项目,因为它没有项目引用
src/common/tsconfig.json
{
"extends": "../tsconfig.json", //inherit from root tsconfig
// but override these:
"compilerOptions": {
"rootDir": ".",
"outDir": "../../build/common",
"resolveJsonModule": true,
"composite": true
}
}
一个子项目可以导入 common 因为声明了引用。src/projectA/tsconfig.json
{
"extends": "../tsconfig.json", //inherit from root tsconfig
// but override these:
"compilerOptions": {
"rootDir": ".",
"outDir": "../../build/libA",
"resolveJsonModule": true,
"composite": true
},
"references": [
{ "path": "../common" }
]
}
关于javascript - 'package.json' 不在 'rootDir' 之下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55753163/
最近开始学习MongoDB。今天老师教了我们 mongoexport 命令。在练习时,我遇到了一个典型的问题,包括教练在内的其他同学都没有遇到过。我在我的 Windows 10 机器上使用 Mongo
我是 JSON Schema 的新手,读过什么是 JSON Schema 等等。但我不知道如何将 JSON Schema 链接到 JSON 以针对该 JSON Schema 进行验证。谁能解释一下?
在 xml 中,我可以在另一个 xml 文件中包含一个文件并使用它。如果您的软件从 xml 获取配置文件但没有任何方法来分离配置,如 apache/ngnix(nginx.conf - site-av
我有一个 JSON 对象,其中包含一个本身是 JSON 对象的字符串。我如何反序列化它? 我希望能够做类似的事情: #[derive(Deserialize)] struct B { c: S
考虑以下 JSON { "a": "{\"b\": 12, \"c\": \"test\"}" } 我想定义一个泛型读取 Reads[Outer[T]]对于这种序列化的 Json import
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 11 个月前关闭。 Improve
我的旧项目在 MySQL 中有 Standard JSON 格式的数据。 对于我在 JS (Node.js) 和 DynamoDB 中的全新项目,关于 Standard JSON格式: 是否建议将其转
JSON 值字符串、数字、true、false、null 是否是有效的 JSON? 即,是 true 一个有效的 JSON 文档?还是必须是数组/对象? 一些验证器接受这个(例如 http://jso
我有一个 JSON 字符串,其中一个字段是文本字段。这个文本字段可以包含用户在 UI 中输入的文本,如果他们输入的文本是 JSON 文本,也许是为了说明一些编码,我需要对他们的文本进行编码,以便它不会
我正在通过 IBM MQ 调用处理数据,当由 ColdFusion 10 (10,0,11,285437) 序列化时,0 将作为 +0.0 返回,它会导致无效的 JSON并且无法反序列化。 stPol
我正在从三个数组中生成一个散列,然后尝试构建一个 json。我通过 json object has array 成功了。 require 'json' A = [['A1', 'A2', 'A3'],
我从 API 接收 JSON,响应可以是 30 种类型之一。每种类型都有一组唯一的字段,但所有响应都有一个字段 type 说明它是哪种类型。 我的方法是使用serde .我为每种响应类型创建一个结构并
我正在下载一个 JSON 文件,我已将其检查为带有“https://jsonlint.com”的有效 JSON 到文档目录。然后我打开文件并再次检查,结果显示为无效的 JSON。这怎么可能????这是
我正在尝试根据从 API 接收到的数据动态创建一个 JSON 对象。 收到的示例数据:将数据解码到下面给出的 CiItems 结构中 { "class_name": "test", "
我想从字符串转换为对象。 来自 {"key1": "{\n \"key2\": \"value2\",\n \"key3\": {\n \"key4\": \"value4\"\n }\n
目前我正在使用以下代码将嵌套的 json 转换为扁平化的 json: import ( "fmt" "github.com/nytlabs/gojsonexplode" ) func
我有一个使用来自第三方 API 的数据的应用程序。我需要将 json 解码为一个结构,这需要该结构具有“传入”json 字段的 json 标签。传出的 json 字段具有不同的命名约定,因此我需要不同
我想使用 JSON 架构来验证某些值。我有两个对象,称它们为 trackedItems 和 trackedItemGroups。 trackedItemGroups 是组名称和 trackedItem
考虑以下案例类模式, case class Y (a: String, b: String) case class X (dummy: String, b: Y) 字段b是可选的,我的一些数据集没有字
我正在存储 cat ~/path/to/file/blah | 的输出jq tojson 在一个变量中,稍后在带有 JSON 内容的 curl POST 中使用。它运作良好,但它删除了所有换行符。我知
我是一名优秀的程序员,十分优秀!