mirror of
https://github.com/JosunLP/UserScriptProjectTemplate.git
synced 2025-06-21 10:11:07 +00:00

Switching from Webpack to vite, upgrading the version of the logo file and updating dependencies
16 lines
368 B
JSON
16 lines
368 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": false,
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"paths": {
|
|
"undici-types": ["./node_modules/undici/types/index.d.ts"]
|
|
}
|
|
}
|
|
}
|