forked from outline/outline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 924 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"baseUrl": ".",
"jsx": "react",
"lib": ["dom", "es2020", "dom.iterable", "esnext.asynciterable"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitOverride": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"sourceMap": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"noEmit": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es2020",
"paths": {
"@server/*": ["./server/*"],
"@shared/*": ["./shared/*"],
"~/*": ["./app/*"]
}
},
"exclude": [
"node_modules",
"build",
"server/migrations"
]
}