17 lines
486 B
JSON
17 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "es2017",
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"baseUrl": "./",
|
|
"incremental": true,
|
|
"skipLibCheck": true // https://stackoverflow.com/questions/55680391/typescript-error-ts2403-subsequent-variable-declarations-must-have-the-same-typ
|
|
},
|
|
"include": ["src"]
|
|
}
|