42 lines
968 B
JSON
42 lines
968 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"types": ["node"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
|
|
"alwaysStrict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"removeComments": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"noEmitHelpers": false,
|
|
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "."
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
],
|
|
"include": ["src"]
|
|
}
|