-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.root.json
34 lines (34 loc) · 997 Bytes
/
tsconfig.root.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
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
// "suppressImplicitAnyIndexErrors": true,
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"stripInternal": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": false,
// "isolatedModules": true,
"useUnknownInCatchVariables": false,
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"moduleResolution": "Node",
"paths": {
"@agora-js/*": ["packages/*/src"],
// https://github.com/microsoft/TypeScript/issues/37991
"tslib": ["node_modules/tslib/tslib.d.ts"]
}
}
}