19 lines
328 B
JSON
19 lines
328 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es6",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"sourceMap": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"strictNullChecks": true,
|
||
|
"skipLibCheck": true,
|
||
|
"outDir": "dist"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"dist"
|
||
|
]
|
||
|
}
|