MqttDispatcher/tsconfig.json

26 lines
511 B
JSON
Raw Normal View History

2017-07-22 23:39:14 +02:00
{
"compilerOptions": {
2017-08-23 15:52:37 +02:00
"target": "es6",
2017-07-22 23:39:14 +02:00
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
2017-08-23 15:52:37 +02:00
"lib": ["es6"],
2017-07-22 23:39:14 +02:00
"strictNullChecks": true,
2017-08-23 15:52:37 +02:00
//"noImplicitAny": true,
2017-07-22 23:39:14 +02:00
"noEmitOnError": true,
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*.*"
],
"exclude": [
"node_modules",
"dist",
"proto",
"kernel"
]
}