2022-01-05 10:41:29 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-09-15 02:56:46 +02:00
|
|
|
"target": "ES2020",
|
2022-01-05 10:41:29 +01:00
|
|
|
"declaration": true,
|
2022-05-19 02:29:09 +02:00
|
|
|
"moduleResolution": "Node",
|
2022-01-05 10:41:29 +01:00
|
|
|
"outDir": "./dist",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
2023-06-26 10:14:40 +02:00
|
|
|
"skipLibCheck": false,
|
2022-10-23 01:10:00 +02:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
2022-01-05 10:41:29 +01:00
|
|
|
"types": [
|
2023-12-14 10:12:38 +01:00
|
|
|
"node",
|
|
|
|
"vitest/globals"
|
2022-04-20 07:06:04 +02:00
|
|
|
],
|
2022-06-07 12:03:42 +02:00
|
|
|
"jsx": "react",
|
2022-06-13 02:25:27 +02:00
|
|
|
"jsxFactory": "jsx",
|
2022-06-12 01:20:31 +02:00
|
|
|
"jsxFragmentFactory": "Fragment",
|
2022-01-05 10:41:29 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2022-05-19 02:29:09 +02:00
|
|
|
"src/**/*.ts",
|
2023-11-06 23:05:23 +01:00
|
|
|
"src/**/*.d.ts",
|
2022-05-27 10:28:07 +02:00
|
|
|
"src/**/*.mts",
|
2023-05-05 03:46:49 +02:00
|
|
|
"src/**/*.test.ts",
|
|
|
|
"src/**/*.test.tsx"
|
2022-04-20 07:06:04 +02:00
|
|
|
],
|
2022-02-01 14:15:00 +01:00
|
|
|
}
|