-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
38 lines (38 loc) · 1.09 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
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2017",
"allowJs": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noEmitOnError": false,
"strictNullChecks": true,
"experimentalDecorators": true,
"noEmit": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"inlineSources": true,
"baseUrl": ".",
"module": "esnext",
"outDir": "../build",
"paths": {
"@skyrocketjs/worker": ["packages/worker/src"],
"@skyrocketjs/worker/*": ["packages/worker/src/*"],
"@skyrocketjs/channel": ["packages/service/src"],
"@skyrocketjs/channel/*": ["packages/service/src/*"]
},
"lib": ["webworker", "es2017", "scripthost", "dom"]
},
"include": [
"packages/service/src/**/*",
"packages/worker/src/**/*",
"packages/**/app/**/*",
"packages/**/addon/**/*",
"packages/**/tests/**/*",
"packages/**/types/**/*",
"packages/**/test-support/**/*",
"packages/**/addon-test-support/**/*"
],
"exclude": ["node_modules", "packages/**/node_modules"]
}