2024-10-22 18:33:44 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
2024-10-22 18:58:34 -04:00
|
|
|
"DOM",
|
|
|
|
"ES2018"
|
2024-10-22 18:33:44 -04:00
|
|
|
],
|
|
|
|
"outDir": "lib",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"strict": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"pretty": true,
|
|
|
|
"types": ["node"],
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"typings/**/*",
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": ["test-project/**/*"]
|
|
|
|
}
|