2018-06-13 22:39:39 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [ "es2015", "es5", "dom" ],
|
|
|
|
"module": "commonjs",
|
2018-06-14 09:25:56 +03:00
|
|
|
"outDir": "./src/",
|
2018-06-13 22:39:39 +03:00
|
|
|
"target": "es5",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
|
|
|
"preserveSymlinks": true,
|
|
|
|
|
|
|
|
"preserveWatchOutput": true,
|
|
|
|
"pretty": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"removeComments": false,
|
|
|
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true
|
2018-06-14 09:25:56 +03:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src.ts/*.ts",
|
|
|
|
"src.ts/**/*.ts"
|
|
|
|
]
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
|