sbt-idp/cope2n-fe/tsconfig.json

36 lines
758 B
JSON
Raw Permalink Normal View History

2023-11-30 11:19:06 +00:00
{
"compilerOptions": {
2024-01-31 04:08:20 +00:00
"baseUrl": "./src",
2023-11-30 11:19:06 +00:00
"target": "ESNext",
"lib": [
2024-01-31 04:08:20 +00:00
"dom",
"dom.iterable",
"esnext"
],
"types": [
"vite/client",
"vite-plugin-svgr/client"
2023-11-30 11:19:06 +00:00
],
"allowJs": false,
2024-01-31 04:08:20 +00:00
"skipLibCheck": false,
2023-11-30 11:19:06 +00:00
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
2024-01-31 04:08:20 +00:00
"noFallthroughCasesInSwitch": true,
2023-11-30 11:19:06 +00:00
"module": "ESNext",
2024-01-31 04:08:20 +00:00
"moduleResolution": "node",
2023-11-30 11:19:06 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2024-01-31 04:08:20 +00:00
"jsx": "react-jsx",
2023-11-30 11:19:06 +00:00
},
"include": [
2024-01-31 04:08:20 +00:00
"src",
"src/**/*"
2023-11-30 11:19:06 +00:00
],
2024-01-31 04:08:20 +00:00
"exclude": [
"src/pages/template-create-page",
"src/pages/templates-page",
"src/components/react-via/"
2023-11-30 11:19:06 +00:00
]
}