modernize frontend-shared to target the same ES and TS standards as the rest of the app

This commit is contained in:
Hazelnoot 2025-10-05 23:59:11 -04:00
parent d08bb5c82f
commit 73481990ea
9 changed files with 560 additions and 483 deletions

View file

@ -0,0 +1,19 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../shared/tsconfig.node.json",
"compilerOptions": {
"noImplicitAny": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules"
]
},
"include": [
"*.js",
"*.ts"
],
"exclude": [
"node_modules",
"js-built"
]
}