2022-07-10 18:30:00 +02:00
|
|
|
{
|
2023-07-21 22:58:45 +02:00
|
|
|
"compilerOptions": {
|
2023-12-30 16:54:59 +01:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "Node16",
|
|
|
|
"moduleResolution": "Node16",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "@lilybird/jsx",
|
|
|
|
"strict": true,
|
2023-07-21 22:58:45 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
2023-08-24 10:55:24 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-12-30 16:54:59 +01:00
|
|
|
"noEmit": true,
|
|
|
|
"skipLibCheck": true,
|
2023-12-30 17:03:28 +01:00
|
|
|
"resolveJsonModule": true,
|
2023-12-30 16:54:59 +01:00
|
|
|
"types": ["bun-types", "./globals"]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
2023-07-21 22:58:45 +02:00
|
|
|
}
|