2020-08-04 12:59:41 +00:00
|
|
|
{
|
2022-08-02 12:11:38 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"allowJs": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-08-03 12:12:07 +00:00
|
|
|
"jsx": "react-jsx",
|
2022-08-02 12:11:38 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
},
|
2021-09-17 13:23:34 +00:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": [
|
|
|
|
"**/*.test.ts",
|
|
|
|
"**/*.test.tsx"
|
|
|
|
],
|
2022-08-02 12:11:38 +00:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
|
|
}
|