diff options
Diffstat (limited to 'driver/tsconfig.json')
| -rw-r--r-- | driver/tsconfig.json | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/driver/tsconfig.json b/driver/tsconfig.json index a7fc6fb..1cb84b4 100644 --- a/driver/tsconfig.json +++ b/driver/tsconfig.json @@ -2,10 +2,19 @@ "compilerOptions": { "target": "ES2020", "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], + "lib": [ + "ES2020", + "DOM", + "DOM.Iterable" + ], "module": "ESNext", "skipLibCheck": true, - + "baseUrl": ".", + "paths": { + "@/*": [ + "./src/*" + ] + }, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, @@ -13,13 +22,18 @@ "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", - /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] + "include": [ + "src" + ], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] } |
