2019-08-24 14:40:34 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"noEmit": true,
|
2024-10-07 16:52:27 -07:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2019-08-24 14:40:34 +02:00
|
|
|
"strict": true,
|
Update SSR, Events, Spreads, New Resource API, Children Helper, and More (#328)
* New Async SSR WIP
* update packages
* v0.24.0-beta.0
* fix non-loading resources, new SSR API, jsx publish convention
* v0.24.0-beta.1
* fix #322 state spreads
* resourceAPI refactor, better props
* small tweaks, update docs
* v0.24.0-beta.2
* update docs
* v0.24.0-beta.3
* Update docs, remove auto state getter memoization
* v0.24.0-beta.4
* prettier cleanup
2021-02-04 01:38:45 -08:00
|
|
|
"lib": ["dom", "esnext", "dom.iterable"],
|
2023-03-25 23:11:11 -04:00
|
|
|
"jsx": "preserve",
|
|
|
|
|
// Necessary due to picocolors using weird export syntax.
|
|
|
|
|
// This can be removed if the following issue gets fixed:
|
|
|
|
|
// https://github.com/alexeyraspopov/picocolors/issues/50
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
// Allows TS to see the Vitest globals
|
|
|
|
|
"types": ["vitest/globals"]
|
2019-08-24 14:40:34 +02:00
|
|
|
},
|
2019-12-18 22:57:18 -08:00
|
|
|
"exclude": ["node_modules"]
|
2019-08-24 14:40:34 +02:00
|
|
|
}
|