33 lines
739 B
JSON
33 lines
739 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
// build 输出的目标版本
|
||
|
"target": "es2017",
|
||
|
"lib": [
|
||
|
"es2015",
|
||
|
"es2016",
|
||
|
"es2017",
|
||
|
"dom",
|
||
|
],
|
||
|
// 模块引入
|
||
|
"module": "ESNext",
|
||
|
// 从项目中的TypeScript和JavaScript文件生成.d.ts文件。
|
||
|
"declaration": true,
|
||
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
||
|
"moduleResolution": "node",
|
||
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
||
|
"declarationDir": "./dist/types",
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"tslib": [
|
||
|
"path/to/node_modules/tslib/tslib.d.ts"
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|