Replaced the hardcoded '1.0.0' version string in CloudSyncManager.ts with the version from package.json. Enabled resolveJsonModule in tsconfig.json to support JSON imports. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
36 lines
663 B
JSON
Executable File
36 lines
663 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"node",
|
|
"vite/client"
|
|
],
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"global.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
]
|
|
} |