SIGN IN SIGN UP
solidjs / solid UNCLAIMED

A declarative, efficient, and flexible JavaScript library for building user interfaces.

0 0 120 TypeScript
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,
"lib": ["dom", "esnext", "dom.iterable"],
"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
}