22 lines
305 B
JSON
22 lines
305 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"target": "es2016",
|
||
|
"strict": true,
|
||
|
"noUnusedParameters": false,
|
||
|
"noUnusedLocals": true,
|
||
|
"outDir": "out",
|
||
|
"sourceMap": true,
|
||
|
"declaration": true,
|
||
|
"lib": [
|
||
|
"es2016",
|
||
|
"dom"
|
||
|
]
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"out",
|
||
|
"tools"
|
||
|
]
|
||
|
}
|