19 lines
463 B
JSON
19 lines
463 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["src/**/*", "electron.vite/**/*"],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" },
|
|
{ "path": "./tsconfig.web.json" }
|
|
]
|
|
} |