You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
530 B
26 lines
530 B
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noEmitOnError": true,
|
|
"noUnusedLocals": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2015",
|
|
"outDir": "lib",
|
|
"lib": [
|
|
"es2015",
|
|
"es2015.collection",
|
|
"dom",
|
|
"es2015.iterable",
|
|
"es2017.object"
|
|
],
|
|
"types": ["jest", "node"],
|
|
"jsx": "react",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|