-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
34 lines (34 loc) · 978 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": {
"allowJs": true,
"composite": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"jsx": "react",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "CommonJS",
"moduleResolution": "Node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "ES2019",
"typeRoots": ["./typings", "./node_modules/@types"]
},
"files": [],
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/core/__tests__" },
{ "path": "./packages/exams" },
{ "path": "./packages/generator" },
{ "path": "./packages/generator/__tests__" },
{ "path": "./packages/mastering" },
{ "path": "./packages/mastering/__tests__" },
{ "path": "./packages/rendering" },
{ "path": "./packages/rendering/__tests__" },
{ "path": "./packages/cli" }
]
}