Files
modeling-app/tsconfig.json
Frank Noirot 9fc1df7c1d Add app version to UI in Settings (#1351)
* Make package version available in app code

* Show app version in settings page with link

* fmt

* Replace Vite define with Vite plugin

* Don't use import.meta.env in bare TS file
2024-02-07 11:36:19 -05:00

35 lines
778 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"paths": {
"/*": ["src/*"]
},
"types": ["vite/client", "@types/wicg-file-system-access", "node", "@wdio/globals/types"],
"target": "esnext",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ES2022",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src",
"e2e",
"./*.ts"
],
"references": [{ "path": "./tsconfig.node.json" }]
}