24 lines
491 B
JSON
24 lines
491 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"jsx": "preserve",
|
|
"moduleResolution": "node",
|
|
"composite": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowImportingTsExtensions": true
|
|
},
|
|
"include": [
|
|
"src/main",
|
|
"src/preload",
|
|
"package.json",
|
|
"vite.config.mts",
|
|
"buildAssets/builder",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.mts",
|
|
"tests/**/*.spec.ts"
|
|
]
|
|
}
|