2019-10-05 08:44:49 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-02-17 21:11:18 +00:00
|
|
|
"rootDir": "./src",
|
|
|
|
"baseUrl": "./src",
|
2022-02-17 21:26:38 +00:00
|
|
|
"outDir": "./build",
|
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",
|
2019-10-05 08:44:49 +00:00
|
|
|
"sourceMap": true,
|
2020-05-10 13:50:12 +00:00
|
|
|
"strict": true,
|
2022-02-18 00:09:57 +00:00
|
|
|
"suppressImplicitAnyIndexErrors": true
|
2020-05-10 13:50:12 +00:00
|
|
|
},
|
2022-02-23 21:51:26 +00:00
|
|
|
"exclude": ["node_modules", "build"],
|
2020-05-10 13:50:12 +00:00
|
|
|
"include": ["**/*.ts", "**/*.tsx"]
|
2019-10-05 08:44:49 +00:00
|
|
|
}
|