parent
aa88a3edbc
commit
f304be05a0
@ -0,0 +1,14 @@ |
|||||||
|
|
||||||
|
/* eslint-disable */ |
||||||
|
module.exports = { |
||||||
|
name: 'remixd', |
||||||
|
preset: '../../../jest.config.js', |
||||||
|
transform: { |
||||||
|
'^.+\\.[tj]sx?$': [ |
||||||
|
'babel-jest', |
||||||
|
{ cwd: __dirname, configFile: './babel-jest.config.json' } |
||||||
|
] |
||||||
|
}, |
||||||
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'], |
||||||
|
coverageDirectory: '../../../coverage/libs/remixd' |
||||||
|
} |
@ -1,17 +1,9 @@ |
|||||||
{ |
{ |
||||||
|
"extends": "../../tsconfig.json", |
||||||
"compilerOptions": { |
"compilerOptions": { |
||||||
/* Basic Options */ |
"types": ["node"], |
||||||
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
"module": "commonjs", |
||||||
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ |
"esModuleInterop": true |
||||||
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
|
||||||
"outDir": "./lib", |
|
||||||
"strict": true, /* Enable all strict type-checking options. */ |
|
||||||
"strictPropertyInitialization": false, /* Enable strict checking of property initialization in classes. */ |
|
||||||
/* Experimental Options */ |
|
||||||
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ |
|
||||||
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ |
|
||||||
"skipLibCheck": true, |
|
||||||
"resolveJsonModule": true |
|
||||||
}, |
}, |
||||||
"include": ["bin", "src", "bin/origins.json"] |
"include": ["**/*.ts"] |
||||||
} |
} |
@ -0,0 +1,11 @@ |
|||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
/* Basic Options */ |
||||||
|
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ |
||||||
|
"declaration": true, /* Generates corresponding '.d.ts' file. */ |
||||||
|
"strict": true, /* Enable all strict type-checking options. */ |
||||||
|
"strictPropertyInitialization": false /* Enable strict checking of property initialization in classes. */ |
||||||
|
}, |
||||||
|
"include": ["bin", "src", "bin/origins.json"] |
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
|
||||||
|
{ |
||||||
|
"extends": "./tsconfig.json", |
||||||
|
"compilerOptions": { |
||||||
|
"outDir": "../../../dist/out-tsc", |
||||||
|
"module": "commonjs", |
||||||
|
"types": ["jest", "node"] |
||||||
|
}, |
||||||
|
"include": [ |
||||||
|
"**/*.spec.ts", |
||||||
|
"**/*.spec.js", |
||||||
|
"**/*.d.ts" |
||||||
|
] |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue