2022-09-16 17:18:15 +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",
|
2023-06-29 01:24:20 +00:00
|
|
|
// TODO: Disabled for IDE performance issues with our translation JSON
|
|
|
|
// "resolveJsonModule": true,
|
2023-07-31 08:16:52 +00:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"strictNullChecks": true,
|
2024-05-04 22:13:41 +00:00
|
|
|
"strictPropertyInitialization": true,
|
2022-09-16 17:18:15 +00:00
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2023-04-28 11:25:25 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
2024-02-24 06:45:38 +00:00
|
|
|
"*": ["./src/*"]
|
|
|
|
}
|
2022-09-16 17:18:15 +00:00
|
|
|
},
|
2023-12-28 13:03:21 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "*.d.ts", ".storybook/**/*"],
|
2023-04-28 11:25:25 +00:00
|
|
|
"exclude": ["src/services/fixtures/*", "node_modules", "dist"],
|
2023-07-07 06:08:30 +00:00
|
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
2024-02-24 06:45:38 +00:00
|
|
|
"jsx": "preserve"
|
2023-07-07 06:08:30 +00:00
|
|
|
},
|
2024-02-24 06:45:38 +00:00
|
|
|
"esm": true
|
|
|
|
}
|
2022-09-16 17:18:15 +00:00
|
|
|
}
|