mirror of
https://github.com/xoseperez/espurna.git
synced 2026-02-20 01:31:34 +01:00
- experimental vite dev server support - gulp webui_build & webui_PRESET -> build - gulp task params for build and dev server - bundle sources using rollup in both gulp and vite - PRESET lib to manage available modules and their constants replacing 'define' method of .js code treeshaking
23 lines
469 B
JSON
23 lines
469 B
JSON
{
|
|
"include": [
|
|
"./html/inline.mjs",
|
|
"./html/preset.mjs",
|
|
"./gulpfile.mjs",
|
|
"./vite.config.mjs"
|
|
],
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"module": "es2022",
|
|
"lib": ["es2022"],
|
|
"moduleResolution": "nodenext",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"target": "es2022"
|
|
}
|
|
}
|