mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
42cd107b2a
* begin vite stuff (does not work yet) * finalize vite switch + cleanup package.json * Assets path, re-add async, fix z * Remove source-map-support --------- Co-authored-by: Liam <byteslice@airmail.cc>
24 lines
435 B
JSON
24 lines
435 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./js",
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ES2020",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
|
|
"moduleResolution": "Node",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
|
|
|
|
"strict": true
|
|
}
|
|
}
|