17 lines
417 B
JSON
17 lines
417 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["es2020", "dom"],
|
||
|
|
"noEmit": true,
|
||
|
|
"module": "nodenext",
|
||
|
|
"moduleResolution": "nodenext",
|
||
|
|
"types": ["node"],
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"jsx": "react",
|
||
|
|
// Remove when https://github.com/thomasbrodusch/vitest-fail-on-console/issues/160 is resolved
|
||
|
|
"skipLibCheck": true
|
||
|
|
},
|
||
|
|
"include": ["./src/**/*"]
|
||
|
|
}
|