fe-boilerplate/tsconfig.json

17 lines
294 B
JSON
Raw Permalink Normal View History

2015-09-15 08:10:14 +02:00
{
"compilerOptions": {
"target": "es5",
"removeComments": true,
"experimentalDecorators": true,
2015-09-15 08:10:14 +02:00
"jsx": "react",
"outDir": "dist",
"lib": ["dom", "es2015"],
"sourceMap": true,
"resolveJsonModule": true
2015-09-15 08:10:14 +02:00
},
2016-02-26 16:39:48 +01:00
"exclude": [
"node_modules",
"static"
2015-09-15 08:10:14 +02:00
]
}