UserScriptProjectTemplate/tsconfig.json
Jonas Pfalzgraf 8089771d41 ⬆️ Upgrading Project
Switching from Webpack to vite, upgrading the version of the logo file and updating dependencies
2024-06-02 20:50:22 +02:00

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"]
}
}
}