forked from morethanwords/tweb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
192 lines (180 loc) · 6 KB
/
Copy pathvite.config.ts
File metadata and controls
192 lines (180 loc) · 6 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/// <reference types="vitest/config" />
import {defineConfig} from 'vite';
import solidPlugin from 'vite-plugin-solid';
// @ts-ignore no type declarations
import handlebars from 'vite-plugin-handlebars';
import basicSsl from '@vitejs/plugin-basic-ssl';
import {visualizer} from 'rollup-plugin-visualizer';
import checker from 'vite-plugin-checker';
// import devtools from 'solid-devtools/vite'
import autoprefixer from 'autoprefixer';
import {resolve} from 'path';
import {existsSync, copyFileSync} from 'fs';
import {ServerOptions} from 'vite';
import {watchLangFile} from './watch-lang.js';
import path from 'path';
const rootDir = resolve(__dirname);
const certsDir = path.join(rootDir, 'certs');
const ENV_LOCAL_FILE_PATH = path.join(rootDir, '.env.local');
const LANG_PACK_LOCAL_FILE_PATH = path.join(rootDir, 'src', 'langPackLocalVersion.ts');
const isDEV = process.env.NODE_ENV === 'development';
if(!existsSync(LANG_PACK_LOCAL_FILE_PATH)) {
copyFileSync(path.join(rootDir, 'src', 'langPackLocalVersion.example.ts'), LANG_PACK_LOCAL_FILE_PATH);
}
if(isDEV) {
if(!existsSync(ENV_LOCAL_FILE_PATH)) {
copyFileSync(path.join(rootDir, '.env.local.example'), ENV_LOCAL_FILE_PATH);
}
watchLangFile();
}
const handlebarsPlugin = handlebars({
context: {
title: 'Telegram Web',
description: 'Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.',
url: 'https://web.hfsz2319.dpdns.org/k/',
origin: 'https://web.hfsz2319.dpdns.org/'
}
});
const USE_SSL = false;
const USE_SIGNED_CERTS = USE_SSL && true;
const USE_SELF_SIGNED_CERTS = USE_SSL && false;
// * mkdir certs; cd certs
// * mkcert web.hfsz2319.dpdns.org
// * chmod 644 web.hfsz2319.dpdns.org-key.pem
// * nano /etc/hosts
// * 127.0.0.1 web.hfsz2319.dpdns.org
const host = USE_SSL ? 'web.hfsz2319.dpdns.org' : 'localhost';
const serverOptions: ServerOptions = {
host,
port: USE_SSL ? 443 : 8080,
sourcemapIgnoreList(sourcePath, sourcemapPath) {
return sourcePath.includes('node_modules') ||
sourcePath.includes('logger') ||
sourcePath.includes('eventListenerBase');
},
https: USE_SIGNED_CERTS ? {
key: path.join(certsDir, host + '-key.pem'),
cert: path.join(certsDir, host + '.pem')
} : undefined
};
const SOLID_SRC_PATH = 'src/solid/packages/solid';
const SOLID_BUILT_PATH = 'src/vendor/solid';
const USE_SOLID_SRC = false;
const SOLID_PATH = USE_SOLID_SRC ? SOLID_SRC_PATH : SOLID_BUILT_PATH;
const USE_OWN_SOLID = existsSync(resolve(rootDir, SOLID_PATH));
const NO_MINIFY = false;
const BASIC_SSL_CONFIG: Parameters<typeof basicSsl>[0] = USE_SELF_SIGNED_CERTS ? {
name: host,
certDir: certsDir
} : undefined;
const ADDITIONAL_ALIASES = {
'solid-transition-group': resolve(rootDir, 'src/vendor/solid-transition-group'),
'@components': resolve(rootDir, 'src/components'),
'@helpers': resolve(rootDir, 'src/helpers'),
'@hooks': resolve(rootDir, 'src/hooks'),
'@stores': resolve(rootDir, 'src/stores'),
'@lib': resolve(rootDir, 'src/lib'),
'@appManagers': resolve(rootDir, 'src/lib/appManagers'),
'@richTextProcessor': resolve(rootDir, 'src/lib/richTextProcessor'),
'@environment': resolve(rootDir, 'src/environment'),
'@customEmoji': resolve(rootDir, 'src/lib/customEmoji'),
'@rlottie': resolve(rootDir, 'src/lib/rlottie'),
'@config': resolve(rootDir, 'src/config'),
'@vendor': resolve(rootDir, 'src/vendor'),
'@layer': resolve(rootDir, 'src/layer'),
'@types': resolve(rootDir, 'src/types'),
'@': resolve(rootDir, 'src')
};
if(USE_OWN_SOLID) {
console.log('using own solid', SOLID_PATH, 'built', !USE_SOLID_SRC);
} else {
console.log('using original solid');
}
export default defineConfig({
plugins: [
// devtools({
// /* features options - all disabled by default */
// autoname: true // e.g. enable autoname
// }),
process.env.VITEST ? undefined : checker({
typescript: true,
eslint: {
// for example, lint .ts and .tsx
lintCommand: 'eslint "./src/**/*.{ts,tsx}" --ignore-pattern "/src/solid/*"',
useFlatConfig: true
}
}),
solidPlugin(),
handlebarsPlugin as any,
USE_SELF_SIGNED_CERTS ? basicSsl(BASIC_SSL_CONFIG) : undefined,
visualizer({
gzipSize: true,
template: 'treemap'
})
].filter(Boolean),
test: {
// include: ['**/*.{test,spec}.?(c|m)[jt]s?(x)'],
exclude: [
'**/node_modules/**',
'**/dist/**',
'**/cypress/**',
'**/.{idea,git,cache,output,temp}/**',
'**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
'**/solid/**'
],
// coverage: {
// provider: 'v8',
// reporter: ['text', 'lcov'],
// include: ['src/**/*.ts', 'store/src/**/*.ts', 'web/src/**/*.ts'],
// exclude: ['**/*.d.ts', 'src/server/*.ts', 'store/src/**/server.ts']
// },
environment: 'jsdom',
// otherwise, solid would be loaded twice:
// deps: {registerNodeLoader: true},
pool: 'forks',
globals: true,
setupFiles: ['./src/tests/setup.ts']
},
server: serverOptions,
base: '',
build: {
target: 'es2020',
sourcemap: true,
assetsDir: '',
copyPublicDir: false,
emptyOutDir: true,
minify: NO_MINIFY ? false : undefined,
rollupOptions: {
output: {
sourcemapIgnoreList: serverOptions.sourcemapIgnoreList
}
// input: {
// main: './index.html',
// sw: './src/index.service.ts'
// }
}
// cssCodeSplit: true
},
worker: {
format: 'es'
},
css: {
devSourcemap: true,
postcss: {
plugins: [
autoprefixer({}) // add options if needed
]
}
},
resolve: {
// conditions: ['development', 'browser'],
alias: USE_OWN_SOLID ? {
'rxcore': resolve(rootDir, SOLID_PATH, 'web/core'),
'solid-js/jsx-runtime': resolve(rootDir, SOLID_PATH, 'jsx'),
'solid-js/web': resolve(rootDir, SOLID_PATH, 'web'),
'solid-js/store': resolve(rootDir, SOLID_PATH, 'store'),
'solid-js': resolve(rootDir, SOLID_PATH),
...ADDITIONAL_ALIASES
} : ADDITIONAL_ALIASES
}
});