mirror of https://github.com/abpframework/abp.git
12 changed files with 72 additions and 18 deletions
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'account-config', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'account', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'setting-management-config', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'identity-config', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'identity-config', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
@ -0,0 +1,7 @@ |
|||
const jestConfig = require('../../jest.config'); |
|||
|
|||
module.exports = { |
|||
...jestConfig, |
|||
name: 'tenant-management-config', |
|||
'ts-jest': { allowSyntheticDefaultImports: true }, |
|||
}; |
|||
@ -1,9 +1,11 @@ |
|||
{ |
|||
"extends": "../../tsconfig.json", |
|||
"compilerOptions": { |
|||
"outDir": "../../out-tsc/spec", |
|||
"types": ["node", "jest"] |
|||
"emitDecoratorMetadata": true, |
|||
"esModuleInterop": true, |
|||
"outDir": "../../dist/out-tsc", |
|||
"module": "commonjs", |
|||
"types": ["jest", "node"] |
|||
}, |
|||
"files": [], |
|||
"include": ["**/*.spec.ts", "**/*.d.ts"] |
|||
} |
|||
|
|||
Loading…
Reference in new issue