27 lines
484 B
JSON
27 lines
484 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": false,
|
||
|
"lib": [
|
||
|
"dom",
|
||
|
"es7"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es6",
|
||
|
"charset": "utf-8",
|
||
|
"pretty": true,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"strictNullChecks": true,
|
||
|
"outDir": "./src"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"coverage",
|
||
|
"tests"
|
||
|
]
|
||
|
}
|