27 lines
445 B
JSON
27 lines
445 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2018", // ~node10
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es2015",
|
||
|
"es2016",
|
||
|
"es2017",
|
||
|
"es2018"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "./src",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"noImplicitAny": false
|
||
|
},
|
||
|
"include": [
|
||
|
"src/"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|