2019-10-05 08:44:49 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-05-10 13:50:12 +00:00
|
|
|
"rootDir": ".",
|
|
|
|
"baseUrl": "./packages",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2019-10-05 08:44:49 +00:00
|
|
|
"declaration": true,
|
2020-05-10 13:50:12 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"module": "esnext",
|
2019-10-05 08:44:49 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
2020-05-10 13:50:12 +00:00
|
|
|
"strict": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"target": "esnext"
|
|
|
|
},
|
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
2019-10-05 08:44:49 +00:00
|
|
|
}
|