mirror of
https://github.com/plasmabit/timethings.git
synced 2026-07-22 09:00:29 +00:00
15 lines
347 B
JSON
15 lines
347 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/**/*.ts", "tests/**/*.ts", "vitest.config.ts"]
|
|
}
|