rypi-scrapper/tsconfig.json

21 lines
513 B
JSON
Raw Normal View History

2023-04-06 16:18:26 +02:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"types": ["vite/client"],
"jsxImportSource": "solid-js"
2023-04-06 16:18:26 +02:00
},
"include": ["src"]
2023-04-06 16:18:26 +02:00
}