-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathtsconfig.json
54 lines (54 loc) · 2.17 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/** Only used for IDE integration and linting. **/
{
"extends": "./tsconfig.build.json",
"exclude": ["node_modules", "**.d.ts"],
"include": [
"packages/h5p-examples/src/**/*",
"packages/h5p-examples/test/**/*",
"packages/h5p-express/src/**/*",
"packages/h5p-express/test/**/*",
"packages/h5p-html-exporter/src/**/*",
"packages/h5p-html-exporter/test/**/*",
"packages/h5p-mongos3/src/**/*",
"packages/h5p-mongos3/test/**/*",
"packages/h5p-react/src/**/*",
"packages/h5p-react/test/**/*",
"packages/h5p-redis-lock/src/**/*",
"packages/h5p-redis-lock/test/**/*",
"packages/h5p-rest-example-client/src/**/*",
"packages/h5p-rest-example-server/src/**/*",
"packages/h5p-server/src/**/*",
"packages/h5p-server/test/**/*",
"packages/h5p-webcomponents/src/**/*",
"packages/h5p-webcomponents/test/**/*",
"packages/h5p-shared-state-server/src/**/*",
"packages/h5p-shared-state-server/test/**/*"
],
"compilerOptions": {
"outDir": "./build-ide",
"jsx": "react",
"paths": {
"@lumieducation/h5p-examples": ["packages/h5p-examples/src"],
"@lumieducation/h5p-express": ["packages/h5p-express/src"],
"@lumieducation/h5p-html-exporter": [
"packages/h5p-html-exporter/src"
],
"@lumieducation/h5p-mongos3": ["packages/h5p-mongos3/src"],
"@lumieducation/h5p-react": ["packages/h5p-react/src"],
"@lumieducation/h5p-rest-example-client": [
"packages/h5p-rest-example-client/src"
],
"@lumieducation/h5p-rest-example-server": [
"packages/h5p-rest-example-server/src"
],
"@lumieducation/h5p-webcomponents": [
"packages/h5p-webcomponents/src"
],
"@lumieducation/h5p-server": ["packages/h5p-server/src"],
"@lumieducation/h5p-redis-lock": ["packages/h5p-redis-lock/src"],
"@lumieducation/h5p-shared-state-server": [
"packages/h5p-shared-state-server/src"
]
}
}
}