2018-10-28 22:01:09 +00:00
|
|
|
/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
|
2018-10-04 20:49:20 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2018-10-28 17:25:43 +00:00
|
|
|
"module": "commonjs",
|
2019-05-21 09:20:34 +00:00
|
|
|
"sourceMap": true,
|
2019-08-21 08:00:01 +00:00
|
|
|
"lib": ["es6", "dom", "dom.iterable"],
|
2020-03-27 22:36:57 +00:00
|
|
|
"removeComments": true, /* we dont really need them within the target files */
|
2020-03-28 12:58:36 +00:00
|
|
|
"jsx": "react",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": ["shared/declarations/*"]
|
|
|
|
}
|
2018-10-04 20:49:20 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-11-17 15:25:44 +00:00
|
|
|
"shared/js/workers",
|
2018-10-28 22:01:09 +00:00
|
|
|
"shared/declarations/**/*.d.ts",
|
2018-11-17 15:25:44 +00:00
|
|
|
"shared/generated",
|
2018-10-28 22:01:09 +00:00
|
|
|
"web/declarations/**/*.d.ts",
|
2018-11-17 15:25:44 +00:00
|
|
|
"web/generated/",
|
|
|
|
"web/environment/",
|
2018-10-28 22:01:09 +00:00
|
|
|
"vendor/**/*.ts"
|
2018-10-04 20:49:20 +00:00
|
|
|
]
|
|
|
|
}
|