First minimal version

This commit is contained in:
2026-01-30 09:31:45 +01:00
parent 5bfca18ca4
commit 518dc8f28f
55 changed files with 27459 additions and 0 deletions

27
tsconfig.tpl.json Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "http://json.schemastore.org/tsconfig",
"compileOnSave": true,
"compilerOptions": {
"module": "none",
"target": "ES2022",
"skipLibCheck": true,
"lib": [ "DOM", "DOM.Iterable", "ES2023" ],
"types": [],
"declaration": true,
"sourceMap": true,
"noEmitOnError": true,
"noImplicitAny": false,
"noImplicitThis": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"strictFunctionTypes": false,
"strictPropertyInitialization": false,
"alwaysStrict": false
},
"exclude": [
"$(Output).Path/"
],
"include": [
"$(Beckhoff.TwinCAT.HMI.Framework).InstallPath/TcHmi.d.ts"
]
}