-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 832 Bytes
/
Copy pathtsconfig.base.json
File metadata and controls
37 lines (37 loc) · 832 Bytes
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
{
"exclude": [".yarn/*", "**/dist", "**/scripts"],
"compilerOptions": {
"types": [
"node",
// "jest"
],
"useUnknownInCatchVariables": false,
"incremental": true,
"target": "ES2019",
"module": "CommonJS",
"skipLibCheck": true,
"allowJs": true,
"checkJs": false,
"jsx": "react",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "./packages",
"composite": true,
"removeComments": true,
"downlevelIteration": true,
"isolatedModules": false,
"strict": true,
"preserveWatchOutput": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"@react-adminer/*": ["./packages/*/src"]
},
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true
}
}