aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.node.json
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-07-31 20:14:53 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-07-31 20:14:53 +0900
commit9aa9576bcec58fc7f5b7e543d5b2af0ba80c3db3 (patch)
treef290703a2fab681df3aa92822e06fbb96fa63f03 /tsconfig.node.json
parent211725f2bec18b2e7c554b334a940e0b0ac250d1 (diff)
vite でプロジェクトを作成する
Diffstat (limited to 'tsconfig.node.json')
-rw-r--r--tsconfig.node.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/tsconfig.node.json b/tsconfig.node.json
new file mode 100644
index 0000000..3afdd6e
--- /dev/null
+++ b/tsconfig.node.json
@@ -0,0 +1,13 @@
+{
+ "compilerOptions": {
+ "composite": true,
+ "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
+ "skipLibCheck": true,
+ "module": "ESNext",
+ "moduleResolution": "bundler",
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "noEmit": true
+ },
+ "include": ["vite.config.ts"]
+}