ts-jest
Version:
A preprocessor with sourcemap support to help use Typescript with Jest
31 lines (30 loc) • 673 B
JSON
{
"compilerOptions": {
"sourceMap": false,
"declaration": true,
"target": "ES5",
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"removeComments": true,
"strictNullChecks": false,
"inlineSourceMap": true,
"jsx": "react",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": false,
"outDir": "dist",
"rootDir": "src",
"skipLibCheck": true
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules"
]
}