storybook/tsconfig.json
ThibaudAv 5ce133a223 test: add test for RenderNgAppService
Configure app/angular package as jest projects
Allow to use jest-preset-angular for app/angular tests
2020-12-07 13:20:11 +01:00

30 lines
631 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"module": "commonjs",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es5",
"types": ["jest"],
"lib": ["es2017", "dom"]
},
"exclude": [
"**/dist",
"node_modules",
"**/node_modules",
"**/*.spec.ts",
"**/__tests__",
"**/*.test.ts",
"**/FlowType*",
"**/setup-jest.ts"
]
}