Invalid JSON: Expected double-quoted property name in JSONat line 15, column 5
| { | |
| "compilerOptions": { | |
| "target": "ESNext", | |
| "useDefineForClassFields": true, | |
| "lib": ["DOM", "DOM.Iterable", "ESNext"], | |
| "types": ["vite/client"], | |
| "allowJs": false, | |
| "skipLibCheck": true, | |
| "esModuleInterop": true, | |
| "allowSyntheticDefaultImports": true, | |
| "strict": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "module": "ESNext", | |
| "moduleResolution": "Node", | |
| // TODO: Disabled for IDE performance issues with our translation JSON | |
| // "resolveJsonModule": true, | |
| "noUncheckedIndexedAccess": true, | |
| "strictNullChecks": true, | |
| "strictPropertyInitialization": true, | |
| "isolatedModules": true, | |
| "noEmit": true, | |
| "jsx": "react-jsx", | |
| "baseUrl": "./", | |
| "paths": { | |
| "*": ["./src/*"] | |
| } | |
| }, | |
| "include": ["src/**/*.ts", "src/**/*.tsx", "*.d.ts", ".storybook/**/*"], | |
| "exclude": ["src/services/fixtures/*", "node_modules", "dist"], | |
| "references": [{ "path": "./tsconfig.node.json" }], | |
| "ts-node": { | |
| "compilerOptions": { | |
| "jsx": "preserve", | |
| "types": ["vite/client"] | |
| }, | |
| "esm": true | |
| } | |
| } | |