23 lines
461 B
JSON
23 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
"types": ["node", "vitest/globals"]
|
|
},
|
|
"include": [
|
|
"src/server",
|
|
"src/shared",
|
|
"scripts",
|
|
"vite.config.ts",
|
|
"vitest.config.ts",
|
|
"playwright.config.ts"
|
|
]
|
|
}
|