2022-02-03 09:06:44 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-02-01 20:18:00 -07:00
|
|
|
"module": "node16",
|
2022-06-25 10:53:06 -07:00
|
|
|
"strict": true,
|
2022-02-03 09:06:44 -07:00
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-06-11 14:12:06 -07:00
|
|
|
"resolveJsonModule": true,
|
2024-02-01 20:18:00 -07:00
|
|
|
"target": "es2022",
|
2023-06-17 20:22:31 -07:00
|
|
|
"moduleResolution": "node16",
|
2022-02-03 09:06:44 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2023-09-08 08:17:45 -07:00
|
|
|
"preserveWatchOutput": true,
|
2022-06-11 14:12:06 -07:00
|
|
|
"baseUrl": "./",
|
2024-04-16 07:44:45 -07:00
|
|
|
"types": ["vitest/globals"]
|
2022-02-03 09:06:44 -07:00
|
|
|
},
|
2024-04-16 07:44:45 -07:00
|
|
|
"exclude": ["dist", "node_modules", "upload"]
|
|
|
|
}
|