26 lines
541 B
JSON
26 lines
541 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"esnext",
|
|
"dom"
|
|
]
|
|
},
|
|
"files": [
|
|
"./lib/index.d.ts"
|
|
]
|
|
}
|