You've already forked objdiff-web
mirror of
https://github.com/encounter/objdiff-web.git
synced 2026-03-30 11:32:18 -07:00
22 lines
457 B
JSON
22 lines
457 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM", "ES2023"],
|
|
"jsx": "react-jsx",
|
|
"target": "ES2022",
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"useDefineForClassFields": true,
|
|
|
|
/* modules */
|
|
"module": "ESNext",
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "Bundler",
|
|
"allowImportingTsExtensions": true,
|
|
|
|
/* type checking */
|
|
"strict": true
|
|
},
|
|
"include": ["src", "webview", "shared"]
|
|
}
|