murashit_codex-panel/tsconfig.json
2026-05-13 00:05:56 +09:00

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"]
}