2022-02-03 10:06:44 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-02-02 04:18:00 +01:00
|
|
|
"module": "node16",
|
2022-06-25 19:53:06 +02:00
|
|
|
"strict": true,
|
2022-02-03 10:06:44 -06:00
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-06-11 16:12:06 -05:00
|
|
|
"resolveJsonModule": true,
|
2024-02-02 04:18:00 +01:00
|
|
|
"target": "es2022",
|
2023-06-17 23:22:31 -04:00
|
|
|
"moduleResolution": "node16",
|
2024-07-06 10:32:38 -04:00
|
|
|
"lib": ["dom", "es2023"],
|
2022-02-03 10:06:44 -06:00
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
2023-09-08 17:17:45 +02:00
|
|
|
"preserveWatchOutput": true,
|
2022-06-11 16:12:06 -05:00
|
|
|
"baseUrl": "./",
|
2024-05-02 16:43:18 +02:00
|
|
|
"jsx": "react",
|
2025-01-09 11:15:41 -05:00
|
|
|
"types": ["vitest/globals"],
|
|
|
|
"noErrorTruncation": true
|
2022-02-03 10:06:44 -06:00
|
|
|
},
|
2024-04-16 10:44:45 -04:00
|
|
|
"exclude": ["dist", "node_modules", "upload"]
|
|
|
|
}
|