2021-05-25 00:51:49 -07:00
|
|
|
{
|
|
|
|
"compileOnSave": false,
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"module": "es6",
|
2021-08-17 15:06:38 -07:00
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"jest",
|
|
|
|
"mocha"
|
|
|
|
],
|
2021-05-25 00:51:49 -07:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
2021-08-17 15:06:38 -07:00
|
|
|
"typeRoots": [
|
|
|
|
"./src/@types",
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"es2015",
|
|
|
|
"es2017",
|
|
|
|
"es2018",
|
|
|
|
"esnext.intl",
|
|
|
|
"es2017.intl",
|
|
|
|
"es2018.intl"
|
|
|
|
],
|
2021-05-25 00:51:49 -07:00
|
|
|
"jsx": "react",
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2021-08-17 15:06:38 -07:00
|
|
|
"~/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
2021-05-25 00:51:49 -07:00
|
|
|
}
|
|
|
|
},
|
2021-08-17 15:06:38 -07:00
|
|
|
"include": [
|
|
|
|
"./src/**/*",
|
|
|
|
"./test-utils/**/*",
|
|
|
|
"./__mocks__/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"plugins"
|
|
|
|
]
|
2021-05-25 00:51:49 -07:00
|
|
|
}
|