mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
17 lines
459 B
JSON
17 lines
459 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"types": ["node", "vitest"],
|
|
"lib": ["ES2022", "DOM"]
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "vitest.config.ts"]
|
|
}
|