2017-11-30 11:06:15 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "build/dist",
|
|
|
|
"module": "esnext",
|
2017-12-14 11:13:01 +00:00
|
|
|
"target": "es5",
|
2019-02-14 10:18:19 +00:00
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"dom"
|
|
|
|
],
|
2017-11-30 11:06:15 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": true,
|
2019-02-14 10:18:19 +00:00
|
|
|
"jsx": "preserve",
|
2017-11-30 11:06:15 +00:00
|
|
|
"rootDir": "src",
|
2020-02-21 13:57:08 +00:00
|
|
|
"downlevelIteration": true,
|
2017-11-30 11:06:15 +00:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-02-14 10:18:19 +00:00
|
|
|
"noUnusedLocals": true,
|
2019-11-05 22:45:02 +00:00
|
|
|
"moduleResolution": "node",
|
2019-02-14 10:18:19 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": false,
|
2019-11-05 22:45:02 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2019-02-14 10:18:19 +00:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true
|
2017-11-30 11:06:15 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"build",
|
|
|
|
"scripts",
|
|
|
|
"acceptance-tests",
|
|
|
|
"webpack",
|
|
|
|
"jest",
|
|
|
|
"src/setupTests.ts"
|
2019-02-14 10:18:19 +00:00
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src"
|
2017-11-30 11:06:15 +00:00
|
|
|
]
|
|
|
|
}
|