2019-10-06 20:04:33 +00:00
|
|
|
{
|
2023-08-06 18:28:46 +00:00
|
|
|
"include": ["*env.d.ts", "src/**/*", "./typings/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "src/__tests__/**"],
|
2019-10-06 20:04:33 +00:00
|
|
|
"compilerOptions": {
|
2023-08-06 18:44:01 +00:00
|
|
|
"outDir": "lib",
|
2023-08-06 18:28:46 +00:00
|
|
|
"module": "CommonJS",
|
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"lib": ["ES6", "DOM"],
|
|
|
|
|
"jsx": "preserve",
|
2019-11-24 22:44:26 +00:00
|
|
|
"allowJs": false,
|
2023-08-06 18:28:46 +00:00
|
|
|
"checkJs": false,
|
2023-08-07 08:52:31 +00:00
|
|
|
"importHelpers": false,
|
2023-08-06 18:28:46 +00:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2019-11-24 22:44:26 +00:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2023-08-06 18:28:46 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"noEmit": false,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"incremental": false,
|
2019-10-06 20:04:33 +00:00
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"noImplicitAny": true,
|
2023-08-06 18:28:46 +00:00
|
|
|
"noImplicitThis": true
|
|
|
|
|
}
|
2019-10-06 20:04:33 +00:00
|
|
|
}
|