Melody/tsconfig.json

14 lines
312 B
JSON
Raw Permalink Normal View History

2023-10-28 02:26:15 +08:00
{
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"target": "ES6",
2024-01-08 03:37:46 +08:00
"rootDir": "./src",
2023-10-28 02:26:15 +08:00
"outDir": "./dist",
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": ["src/**/*"]
}