forked from digitalfabrik/integreat-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
40 lines (40 loc) · 817 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
34
35
36
37
38
39
40
{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"isolatedModules": true,
"jsx": "react",
"lib": ["dom", "dom.iterable", "ES5", "ES6"],
"module": "ES2020",
"noEmit": false,
"outDir": "dist",
"sourceMap": true,
"paths": {
"normalize-strings": ["../shared/@types/normalize-strings"]
},
"skipLibCheck": true,
"target": "ES2019",
"types": ["jest", "node", "react"]
},
"include": [
"src/**/*",
"tools/*",
"src/assets/licenses.json",
"jest.setup.ts",
"jest.config.ts",
"stylelint.config.js"
],
"references": [
{
"path": "../translations"
},
{
"path": "../build-configs"
},
{
"path": "../shared"
}
]
}