16 lines
362 B
JSON
16 lines
362 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022","DOM"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"types": ["node"]
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": ["**/*.test.ts", "vitest.config.ts"]
|
|
}
|