File size: 562 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
{
"compilerOptions": {
"incremental": true,
"downlevelIteration": true,
"rootDirs": ["src"],
"outDir": "lib",
"strict": true,
"moduleResolution": "node",
"target": "es5",
"module": "commonjs",
"jsx": "react",
"experimentalDecorators": true,
"esModuleInterop": true,
"sourceMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noUnusedLocals": false,
"declaration": true,
"declarationMap": true,
"composite": true,
"lib": ["es7", "dom"],
"types": ["node", "jest"]
}
}
|