-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_demo_build.ts
96 lines (86 loc) · 2.39 KB
/
config_demo_build.ts
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import { clearFolders, addDefaultIndex, client, TypeChecker } from 'esbuild-helpers';
clearFolders('dist_client', 'dist_nodejs');
const sample = process.argv[2] || "demo";
/**
* client bundle
*/
client(
{ watch: [] },
{
color: true,
define: {
DEVELOPMENT: 'false'
},
entryPoints: [`./samples/grid01/index.ts`],
outfile: `./docs/${sample}/index.js`,
minify: true,
bundle: true,
tsconfig: `./samples/tsconfig.json`,
platform: 'browser',
sourcemap: false,
logLevel: 'error',
}
);
/**
* index file for project
*/
addDefaultIndex({
distFolder: `docs/${sample}`,
publicFolders: [],
entry: './index.js',
hbr: false,
devServer: false,
devServerPort: 8080,
indexTemplate: /*html*/ `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="./index.css" rel="stylesheet" />
$bundle
</head>
<body>
</body>
</html>
`
});
const checker_client = TypeChecker({
basePath: `./`,
name: 'checker_client',
tsConfigJsonContent: {
compilerOptions: {
target: 'es2018',
module: 'esNext',
lib: ['es2021', 'dom'],
moduleResolution: 'node',
isolatedModules: false,
preserveConstEnums: true,
allowSyntheticDefaultImports: true,
skipLibCheck: true,
sourceMap: true,
inlineSources: true,
declaration: true,
noImplicitAny: true,
noImplicitReturns: true,
noUnusedParameters: true,
noFallthroughCasesInSwitch: true,
noImplicitThis: false,
noUnusedLocals: true,
allowUnreachableCode: false,
removeComments: true,
emitDecoratorMetadata: false,
importHelpers: false,
strictNullChecks: false,
experimentalDecorators: true,
baseUrl: './',
rootDir: '',
paths: {
'@simple-html/grid': ['./packages/grid/src']
}
},
exclude: ['node_modules', 'config_devserver.ts', 'dist']
}
});
checker_client.printSettings();
checker_client.inspectAndPrint();