forked from freeipa/freeipa-webui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
33 lines (33 loc) · 818 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"target": "ES2015",
"lib": ["es6", "dom"],
"sourceMap": true,
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noImplicitAny": false,
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"importHelpers": true,
"skipLibCheck": true,
"noEmit": false,
"resolveJsonModule": true,
"moduleResolution": "node",
"isolatedModules": true
},
"include": ["src", "cypress"],
"exclude": [
"./cypress/cypress.config.ts",
"./cypress/**/*",
"cypress",
"node_modules"
],
"types": ["jest", "@testing-library/jest-dom", "@testing-library/react"]
}