2019-12-10 13:25:07 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2024-06-21 12:50:28 +01:00
|
|
|
"target": "es2022",
|
2025-02-27 18:37:47 +00:00
|
|
|
"experimentalDecorators": false,
|
2020-04-21 11:55:56 +01:00
|
|
|
"esModuleInterop": true,
|
2026-01-15 11:15:37 +00:00
|
|
|
"module": "preserve",
|
|
|
|
|
"moduleResolution": "bundler",
|
2022-03-09 10:09:00 +00:00
|
|
|
"noUnusedLocals": true,
|
2021-08-12 11:46:49 +01:00
|
|
|
"noEmit": true,
|
2022-11-03 12:50:05 +00:00
|
|
|
"declaration": true,
|
2024-08-29 17:56:32 +02:00
|
|
|
"strict": true,
|
2025-05-08 14:38:18 +01:00
|
|
|
"allowImportingTsExtensions": true,
|
2026-01-14 12:48:23 +00:00
|
|
|
"lib": ["es2024", "dom", "dom.iterable"],
|
2026-01-15 11:15:37 +00:00
|
|
|
"types": ["vitest/globals", "node"],
|
|
|
|
|
"paths": {
|
|
|
|
|
"#types/*": ["./node_modules/vite/types/*"]
|
|
|
|
|
}
|
2019-12-10 13:25:07 -07:00
|
|
|
},
|
2024-03-06 08:49:16 +00:00
|
|
|
"include": ["./src/**/*.ts", "./spec/**/*.ts"]
|
2019-12-10 13:25:07 -07:00
|
|
|
}
|