15 lines
448 B
JSON
15 lines
448 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"noImplicitAny": true,
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"downlevelIteration": true, // Needed to allow iteration over some objects like Map() while target is es5
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"types": ["vitest/globals", "@testing-library/jest-dom"],
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|