You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
690 B
24 lines
690 B
{
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"allowJs": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"module": "commonjs",
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true, // esModuleInterop选项的作用是支持使用import d from 'cjs'的方式引入commonjs包。
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
// "@noderun/hapi-router": ["packages/hapi-router/src/index.ts"],
|
|
"@noderun/hapi-router": ["source/plugins/router-plugin/index.ts"],
|
|
"@/*": ["source/*"],
|
|
"#/*": ["types/*"]
|
|
}
|
|
},
|
|
"include": ["source", "types", "test"],
|
|
"exclude": ["node_modules"]
|
|
}
|
|
|