first commit
This commit is contained in:
39
tsconfig.json
Normal file
39
tsconfig.json
Normal 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/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user