File size: 689 Bytes
064bfd6 603297b 064bfd6 7e3630c 064bfd6 e18c81d 064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | {
"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"]
}
|