aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.node.json
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-10-26 12:10:47 +0100
committerLeonardo Bishop <me@leonardobishop.com>2024-10-26 12:10:47 +0100
commit5e4d41d1dfeaaeca731b3c5496377214ec6e557f (patch)
tree6b1c5359f17e1e30c85fdb7d611d1c5bbb7843e9 /tsconfig.node.json
bootstrap project
Diffstat (limited to 'tsconfig.node.json')
-rw-r--r--tsconfig.node.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..f094063
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,19 @@
+{
+ "extends": "@tsconfig/node20/tsconfig.json",
+ "include": [
+ "vite.config.*",
+ "vitest.config.*",
+ "cypress.config.*",
+ "nightwatch.conf.*",
+ "playwright.config.*"
+ ],
+ "compilerOptions": {
+ "composite": true,
+ "noEmit": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "types": ["node"]
+ }
+}