nocobase/tsconfig.jest.json
2021-12-06 21:23:34 +08:00

15 lines
329 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"jsx": "react",
"esModuleInterop": true,
"moduleResolution": "node",
"allowJs": true,
"module": "commonjs",
"target": "es6",
"paths": {
"@nocobase/*": ["./packages/*/src"]
}
},
"exclude": ["./packages/*/esm", "./packages/*/lib"]
}