26 lines
531 B
JSON
26 lines
531 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"declaration": true,
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": false,
|
||
|
"outDir": "dist",
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"target": "es5"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"node_modules"
|
||
|
],
|
||
|
"include": [
|
||
|
"src",
|
||
|
"test"
|
||
|
]
|
||
|
}
|