aboutsummaryrefslogtreecommitdiff
path: root/benchmark/frontend/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/frontend/tsconfig.json')
-rw-r--r--benchmark/frontend/tsconfig.json33
1 files changed, 33 insertions, 0 deletions
diff --git a/benchmark/frontend/tsconfig.json b/benchmark/frontend/tsconfig.json
new file mode 100644
index 000000000..03ebb748a
--- /dev/null
+++ b/benchmark/frontend/tsconfig.json
@@ -0,0 +1,33 @@
+{
+ "compilerOptions": {
+ "target": "es2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "checkJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true,
+ "noUncheckedIndexedAccess": true,
+ "baseUrl": ".",
+ "paths": {
+ "~/*": ["./src/*"]
+ }
+ },
+ "include": [
+ ".eslintrc.cjs",
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ "**/*.cjs",
+ "**/*.mjs"
+ ],
+ "exclude": ["node_modules"]
+}