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