codev / tsconfig.json
chenbhao's picture
refactor: integrate ink-picture as source directory
7e3630c
Raw
History Blame Contribute Delete
689 Bytes
{
"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"]
}