| { | |
| "compilerOptions": { | |
| "lib": ["ESNext"], | |
| "target": "ESNext", | |
| "module": "Preserve", | |
| "moduleDetection": "force", | |
| "ignoreDeprecations": "6.0", | |
| "jsx": "react-jsx", | |
| "allowJs": true, | |
| "types": ["bun"], | |
| "baseUrl": ".", | |
| "paths": { | |
| "src/*": ["src/*"], | |
| "ink-picture": ["src/ink-picture"], | |
| "ink-picture/*": ["src/ink-picture/*"] | |
| }, | |
| "moduleResolution": "bundler", | |
| "allowImportingTsExtensions": true, | |
| "verbatimModuleSyntax": true, | |
| "noEmit": true, | |
| "strict": false, | |
| "skipLibCheck": true, | |
| "noFallthroughCasesInSwitch": true | |
| }, | |
| "include": ["src", "scripts", "env.d.ts"], | |
| "exclude": ["**/src-tauri/target"] | |
| } | |