25 lines
434 B
JSON
25 lines
434 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2015",
|
||
|
"module": "commonjs",
|
||
|
"lib": [
|
||
|
"es6",
|
||
|
"es2015",
|
||
|
"dom"
|
||
|
],
|
||
|
"declaration": true,
|
||
|
"jsx": "react",
|
||
|
"outDir": "dist",
|
||
|
"rootDir": "src",
|
||
|
"strict": false,
|
||
|
"types": [
|
||
|
"node"
|
||
|
],
|
||
|
"experimentalDecorators": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"importHelpers": true,
|
||
|
"esModuleInterop": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"moduleResolution": "node"
|
||
|
}
|
||
|
}
|