mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-15 19:27:49 +01:00
30 lines
794 B
JSON
30 lines
794 B
JSON
{
|
|
"extends": "./tsconfig.extend.json",
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["vite/client", "vite-plugin-svgr/client"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"newLine": "lf",
|
|
"noEmit": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "src"
|
|
},
|
|
"include": ["src"]
|
|
}
|