1
Fork 0
photoview/ui/tsconfig.json

22 lines
547 B
JSON
Raw Normal View History

2021-04-12 00:14:27 +02:00
{
"compilerOptions": {
2021-07-15 13:07:35 +02:00
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": 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
},
2021-07-15 13:07:35 +02:00
"include": ["src"],
2021-07-15 17:43:07 +02:00
"exclude": ["./node_modules", "./build"]
2021-04-12 00:14:27 +02:00
}