22 lines
567 B
JSON
22 lines
567 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
// build 输出的目标版本
|
||
|
"target": "ESNext",
|
||
|
// 模块引入
|
||
|
"module": "ESNext",
|
||
|
// 从项目中的TypeScript和JavaScript文件生成.d.ts文件。
|
||
|
"declaration": true,
|
||
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
||
|
"moduleResolution": "node",
|
||
|
// 指定TypeScript如何从给定的模块说明符中查找文件。
|
||
|
"declarationDir": "./dist/types",
|
||
|
"jsx": "react-jsx"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|