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