1
Fork 0
photoview/ui/tsconfig.json

21 lines
523 B
JSON
Raw Normal View History

2021-04-12 00:14:27 +02:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
2021-07-15 13:07:35 +02:00
"skipLibCheck": true,
"esModuleInterop": false,
2021-07-15 13:07:35 +02:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
2021-04-12 00:14:27 +02:00
"resolveJsonModule": true,
2021-07-15 13:07:35 +02:00
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
2021-04-12 16:06:06 +02:00
},
"include": ["src", "vite.config.ts"]
2021-04-12 00:14:27 +02:00
}