forked from idrawjs/idraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.web.json
34 lines (34 loc) · 873 Bytes
/
tsconfig.web.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": {
"jsx": "react",
"declaration": true,
"sourceMap": false,
"target": "ES6",
"module": "ES2015",
"moduleResolution": "node",
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": true,
"lib": ["ES2016", "DOM"],
"paths": {
"@idraw/types": ["./packages/types/src/index.ts"],
"@idraw/util": ["./packages/util/src/index.ts"],
"@idraw/renderer": ["./packages/renderer/src/index.ts"],
"@idraw/board": ["./packages/board/src/index.ts"],
"@idraw/core": ["./packages/core/src/index.ts"]
}
},
"include": [
"packages/*/src",
"packages/*/__tests__",
"packages/*/dev"
],
"exclude": [
"packages/*/dist",
"packages/*/node_modules"
]
}