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