mirror of
https://github.com/koush/scrypted.git
synced 2026-02-08 08:19:56 +00:00
30 lines
570 B
JSON
30 lines
570 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES6",
|
|
"module": "commonjs",
|
|
"downlevelIteration": true,
|
|
"importHelpers": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"es2017",
|
|
"es2018"
|
|
],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"preserveConstEnums": true // do not remove this option!
|
|
},
|
|
"include": [
|
|
"src/"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|