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