2018-04-28 06:20:03 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"outDir": "dist",
|
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom",
|
|
|
|
"es7"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
2018-11-24 09:03:22 +03:00
|
|
|
"rootDir": ".",
|
2018-04-28 06:20:03 +03:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"declaration": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
2018-10-24 08:24:27 +03:00
|
|
|
"test",
|
|
|
|
"index.ts"
|
2018-04-28 06:20:03 +03:00
|
|
|
]
|
|
|
|
}
|