diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-12 21:59:55 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-12 21:59:55 -0800 |
| commit | 2c3cad528a247c771bca136466337877f76f280f (patch) | |
| tree | a2172f49e6142b287b0e2f33c07ed878fb8e449c /frontend/tsconfig.app.json | |
| parent | 42f1b4de384bcbbdab3b80d8e5cc53b36fcffd50 (diff) | |
| download | neko-2c3cad528a247c771bca136466337877f76f280f.tar.gz neko-2c3cad528a247c771bca136466337877f76f280f.tar.bz2 neko-2c3cad528a247c771bca136466337877f76f280f.zip | |
Implement Frontend Feed List with tests
Diffstat (limited to 'frontend/tsconfig.app.json')
| -rw-r--r-- | frontend/tsconfig.app.json | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/frontend/tsconfig.app.json b/frontend/tsconfig.app.json index a9b5a59..f03834c 100644 --- a/frontend/tsconfig.app.json +++ b/frontend/tsconfig.app.json @@ -3,11 +3,16 @@ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2022", "useDefineForClassFields": true, - "lib": ["ES2022", "DOM", "DOM.Iterable"], + "lib": [ + "ES2022", + "DOM", + "DOM.Iterable" + ], "module": "ESNext", - "types": ["vite/client"], + "types": [ + "vite/client" + ], "skipLibCheck": true, - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, @@ -15,7 +20,6 @@ "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", - /* Linting */ "strict": true, "noUnusedLocals": true, @@ -24,5 +28,11 @@ "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true }, - "include": ["src"] -} + "include": [ + "src" + ], + "exclude": [ + "**/*.test.tsx", + "**/*.test.ts" + ] +}
\ No newline at end of file |
