nocobase/tsconfig.jest.json

17 lines
272 B
JSON
Raw Normal View History

2021-05-23 00:38:08 +00:00
{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react",
"sourceMap": true,
"target": "ES6",
"paths": {
"@nocobase/*": [
"./packages/*/src"
]
}
},
"exclude": [
"./packages/*/esm",
"./packages/*/lib"
]
}