2020-03-30 03:42:04 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"rootDir": "src",
|
|
|
|
"allowJs": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"declaration": true,
|
|
|
|
"diagnostics": true,
|
|
|
|
"esModuleInterop": true,
|
2022-09-30 02:19:15 +00:00
|
|
|
"extendedDiagnostics": false,
|
2020-03-30 03:42:04 +00:00
|
|
|
"listEmittedFiles": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2022-09-30 02:19:15 +00:00
|
|
|
"target": "ES2019",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true
|
2020-03-30 03:42:04 +00:00
|
|
|
},
|
2020-09-23 01:58:42 +00:00
|
|
|
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts", "__mocks__", "lib"]
|
2020-03-30 03:42:04 +00:00
|
|
|
}
|