20 lines
392 B
JSON
20 lines
392 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"noImplicitAny": true,
|
||
|
"removeComments": true,
|
||
|
"inlineSourceMap": true,
|
||
|
"inlineSources": true,
|
||
|
"declaration": true,
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "build",
|
||
|
"target": "es2016",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
]
|
||
|
}
|