chore: track package.json, package-lock.json, tsconfig.json for Docker build

This commit is contained in:
matt 2026-03-17 17:50:33 -07:00
parent 0ccb05f792
commit a0b7eec0b1
4 changed files with 1760 additions and 0 deletions

47
tsconfig.json Normal file
View file

@ -0,0 +1,47 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
/* Modules */
"module": "ES2015",
"moduleResolution": "node",
/* Emit */
"outDir": "./code/web/static/js",
"rootDir": "./code/web/static/ts",
"removeComments": true,
"sourceMap": true,
/* Interop Constraints */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": false,
"noImplicitAny": false,
"strictNullChecks": false,
"strictFunctionTypes": false,
"strictBindCallApply": false,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"alwaysStrict": true,
/* Completeness */
"skipLibCheck": true,
/* Additional Options */
"allowJs": true,
"checkJs": false,
"noEmit": false
},
"include": [
"code/web/static/ts/**/*.ts"
],
"exclude": [
"node_modules",
"code/web/static/vendor"
]
}