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",
|
2018-10-04 20:49:20 +00:00
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"js/workers",
|
2018-10-28 22:01:09 +00:00
|
|
|
"shared/declarations/**/*.d.ts",
|
|
|
|
"web/declarations/**/*.d.ts",
|
|
|
|
"vendor/**/*.ts"
|
2018-10-04 20:49:20 +00:00
|
|
|
]
|
|
|
|
}
|