20 lines
549 B
JSON
20 lines
549 B
JSON
/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
|
|
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"lib": ["es6", "dom", "dom.iterable"],
|
|
"removeComments": true /* we dont really need them within the target files */
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"shared/js/workers",
|
|
"shared/declarations/**/*.d.ts",
|
|
"shared/generated",
|
|
"web/declarations/**/*.d.ts",
|
|
"web/generated/",
|
|
"web/environment/",
|
|
"vendor/**/*.ts"
|
|
]
|
|
} |