-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.45 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
{
"entry": {
"./src/cli.ts": "./cli.bundle.js",
"./src/index.ts": {
"output": "./index.bundle.js",
"compilerOptions": {
"declaration": true
}
},
"./src/sourcemap/sourcemap-worker.ts": "./worker.bundle.js",
"./src/ts-worker.ts": "./tsworker.bundle.js",
"./sample/index.ts": {
"output": "./sample/index.bundle.js",
"bundlerOptions": {
"bundleExternals": ["arg"],
"wrapBegin": "//test - begin\n",
"wrapEnd": "\n//test - end\n",
"declWrapBegin": "//decltest - begin\n",
"declWrapEnd": "\n//decltest - end\n",
"externals": ["**/externals/**"],
"module": "var out"
},
"compilerOptions": {
"declaration": true
}
}
},
"bundlerOptions": {
"verbose": true,
"noSourceMapWorker": true
},
"compilerOptions": {
"typeRoots": ["sample/types"],
"target": "ES2021",
"lib": ["ES2021", "DOM"],
"module": "CommonJS",
"moduleResolution": "Node",
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"declaration": false,
"sourceMap": true,
"importHelpers": true,
"paths": {
"bdsx/*": ["./bdsx/*"]
}
}
}