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
28 lines
527 B
JSON
28 lines
527 B
JSON
{
|
|
"include": [
|
|
"./preset.mjs",
|
|
"./inline.mjs",
|
|
"src/*"
|
|
],
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"module": "es2022",
|
|
"moduleResolution": "nodenext",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"target": "es2022",
|
|
"types": ["dom"],
|
|
"paths": {
|
|
"@build-preset/*": ["./preset/dev/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|