17 lines
442 B
JSON
17 lines
442 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["DOM", "ES2022"],
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"include": ["src", "tests", "vitest.config.ts", "scripts/build.mjs"]
|
|
}
|