2020-07-15 17:30:37 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2021-02-26 09:09:13 -05:00
|
|
|
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
2022-01-06 05:44:13 -08:00
|
|
|
"target": "es2017",
|
|
|
|
|
"module": "es2015",
|
|
|
|
|
"lib": [
|
2021-02-26 09:09:13 -05:00
|
|
|
"dom",
|
|
|
|
|
"dom.Iterable",
|
|
|
|
|
"es2020"
|
|
|
|
|
],
|
2022-01-06 05:44:13 -08:00
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
|
"noImplicitThis": false,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2021-02-26 09:09:13 -05:00
|
|
|
"removeComments": true,
|
2022-01-06 05:44:13 -08:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"useUnknownInCatchVariables": true
|
2021-03-12 15:07:38 +01:00
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"docs",
|
2021-05-28 22:08:21 -04:00
|
|
|
"dist",
|
|
|
|
|
"src/**/*.test.ts"
|
2021-03-12 15:07:38 +01:00
|
|
|
]
|
2022-01-06 05:44:13 -08:00
|
|
|
}
|