first commit

This commit is contained in:
2025-08-02 16:30:27 +02:00
commit 23646bfcee
14851 changed files with 1750626 additions and 0 deletions

39
tsconfig.json Normal file
View File

@@ -0,0 +1,39 @@
{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": false,
"allowSyntheticDefaultImports" : true,
"module": "esnext",
"target": "es6",
"jsx": "react-jsx",
"allowJs": true,
"strict": true,
"strictNullChecks" : false, // REMOVE ME
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"@assets[common]/*": [
"./web/common/webpack/assets/*"
],
"@assets/*": [
"../shop/assets/*",
"./web/common/webpack/assets/*",
"../html/assets/*",
],
"@webpack/*": [
"./web/common/webpack/assets/*"
],
"@twig/*": [
"../shop/twig/*",
"./web/common/twig/*"
]
}
},
"include": [
"./web/common/webpack/**/*",
"./web/templates/**/*",
"./web/common/static/**/*",
"./bundles/KupShop/**/*",
"../html/assets/**/*"
]
}