40 lines
886 B
JSON
40 lines
886 B
JSON
{
|
|
"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/**/*"
|
|
]
|
|
}
|