TeaWeb/tsconfig.json

15 lines
346 B
JSON
Raw Normal View History

2018-10-28 22:01:09 +00:00
/* General file with least possible errors. This is just for your IDE (PHP-Storm for example) */
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"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"
]
}