Spaces:
Sleeping
Sleeping
| { | |
| "compilerOptions": { | |
| "target": "ES2020", | |
| "useDefineForClassFields": true, | |
| "lib": ["ES2020", "DOM", "DOM.Iterable"], | |
| "module": "ESNext", | |
| "skipLibCheck": true, | |
| "moduleResolution": "bundler", | |
| "allowImportingTsExtensions": true, | |
| "baseUrl": ".", | |
| "ignoreDeprecations": "6.0", | |
| "paths": { | |
| "@trek/shared": ["../shared/src/index.ts"], | |
| "@trek/shared/*": ["../shared/src/*"] | |
| }, | |
| "isolatedModules": true, | |
| "moduleDetection": "force", | |
| "noEmit": true, | |
| "jsx": "react-jsx", | |
| "strict": false, | |
| "noUnusedLocals": false, | |
| "noUnusedParameters": false, | |
| "noFallthroughCasesInSwitch": true, | |
| "allowJs": true, | |
| "esModuleInterop": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "resolveJsonModule": true | |
| }, | |
| "include": ["src", "tests"] | |
| } | |