diff options
Diffstat (limited to 'client/simple/tsconfig.json')
| -rw-r--r-- | client/simple/tsconfig.json | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/client/simple/tsconfig.json b/client/simple/tsconfig.json new file mode 100644 index 000000000..dbc3acdf7 --- /dev/null +++ b/client/simple/tsconfig.json @@ -0,0 +1,40 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig.json", + "compilerOptions": { + "lib": ["DOM", "DOM.Iterable", "ES2022"], + "module": "ESNext", + "moduleResolution": "Bundler", + "target": "ES2022", + + "allowImportingTsExtensions": true, + "allowJs": true, + "checkJs": true, + "esModuleInterop": true, + "incremental": true, + "noEmit": true, + "resolveJsonModule": true, + "skipLibCheck": true, + + "strict": true, + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "exactOptionalPropertyTypes": false, + "forceConsistentCasingInFileNames": true, + "isolatedModules": true, + "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, + "noImplicitReturns": true, + "noPropertyAccessFromIndexSignature": false, + "noUncheckedIndexedAccess": true, + "noUncheckedSideEffectImports": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "verbatimModuleSyntax": true, + + "baseUrl": ".", + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo", + "types": ["vite/client"] + }, + "include": ["./"], + "exclude": ["./node_modules/"] +} |