2015-09-22 15:03:39 -04:00
|
|
|
{
|
2016-04-28 20:50:03 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "../dist/tools/",
|
2016-01-22 13:51:16 -05:00
|
|
|
"noImplicitAny": true,
|
2016-06-22 18:57:24 -04:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-07-21 17:20:34 -04:00
|
|
|
"paths": {},
|
2016-04-28 20:50:03 -04:00
|
|
|
"rootDir": ".",
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
2017-07-21 17:20:34 -04:00
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
2016-08-30 21:07:40 -04:00
|
|
|
"target": "es5",
|
|
|
|
"skipLibCheck": true
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"exclude": [
|
2016-06-08 19:06:23 -04:00
|
|
|
"node_modules",
|
2016-06-22 14:28:40 -04:00
|
|
|
"typings-test",
|
2017-01-26 09:03:53 -05:00
|
|
|
"public_api_guard",
|
|
|
|
"docs"
|
2016-04-28 20:50:03 -04:00
|
|
|
]
|
2017-07-21 17:20:34 -04:00
|
|
|
}
|