TeaWeb/tsconfig.json

31 lines
914 B
JSON

/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "es6",
"module": "commonjs",
"sourceMap": true,
"lib": ["es6", "dom", "dom.iterable"],
"removeComments": true, /* we dont really need them within the target files */
"jsx": "react",
"baseUrl": ".",
"paths": {
"*": ["shared/declarations/*"],
"tc-shared/*": ["shared/js/*"],
"tc-backend/web/*": ["web/js/*"], /* specific web part */
"tc-backend/*": ["shared/backend.d/*"],
"tc-loader": ["loader/exports/loader.d.ts"],
"vendor/xbbcode/*": ["vendor/xbbcode/src/*"]
}
},
"exclude": [
"node_modules",
"shared/js/workers",
"shared/declarations/**/*.d.ts",
"shared/generated",
"web/declarations/**/*.d.ts",
"web/generated/",
"web/environment/"
]
}