Files
Pake/tsconfig.json
2022-11-22 00:24:06 +08:00

18 lines
344 B
JSON

{
"compilerOptions": {
"module": "Node16",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "Node16",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@/*": ["bin/*"]
}
},
"include": ["bin/**/*"]
}