-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
31 lines (31 loc) · 897 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
{
"include": [
"packages/web/dist/index.esm.js",
"packages/worker/dist/index.esm.js"
],
"compilerOptions": {
"allowJs": true,
// Avoid extra work
"checkJs": false,
// Ensure ".d.ts" modules are generated
"declaration": true,
"declarationMap": true,
// Prevent output to declaration directory
"declarationDir": null,
// Skip ".js" generation
"emitDeclarationOnly": true,
// Single file emission is impossible with this flag set
"isolatedModules": false,
// Generate single file
// `System`, in contrast to `None`, permits the use of `import.meta`
"module": "System",
// Always emit
"noEmit": false,
// Skip code generation when error occurs
"noEmitOnError": true,
// Ignore errors in library type definitions
"skipLibCheck": true,
// Always strip internal exports
"stripInternal": true
}
}