18 lines
407 B
JSON
18 lines
407 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"declaration": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"target": "es2017",
|
||
|
"sourceMap": true,
|
||
|
"outDir": "./lib",
|
||
|
"baseUrl": "./",
|
||
|
"typeRoots": ["node_modules/@types"],
|
||
|
"incremental": true
|
||
|
},
|
||
|
"include": ["src"],
|
||
|
"exclude": ["src/__test__/*"]
|
||
|
}
|