21 lines
538 B
JSON
21 lines
538 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"types": ["node", "jest"],
|
|
"target": "es5",
|
|
"lib": ["es2015", "dom"],
|
|
"sourceMap": true,
|
|
"outDir": "dist/lib",
|
|
"declaration": true,
|
|
"declarationDir": "dist/types",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|