basic2/tsconfig.node.json

15 lines
261 B
JSON
Raw Normal View History

2022-09-25 23:32:45 +08:00
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
2023-10-29 23:00:06 +08:00
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
2022-09-25 23:32:45 +08:00
},
"include": [
"package.json",
"vite.config.ts",
"vite/**/*.ts"
]
}