forked from jonkoops/matomo-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 835 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
{
"compilerOptions": {
"noLib": false,
"module": "commonjs",
"jsx": "react",
"target": "es5",
"baseUrl": ".",
"paths": {
"@datapunt/*": ["packages/*/src"]
},
"composite": true,
"sourceMap": true,
"allowJs": false,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"esModuleInterop": true,
"noImplicitAny": true,
"declaration": true,
"declarationMap": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true
},
"references": [
{ "path": "packages/js" },
{ "path": "packages/react" }
]
}