MCSM-Daemon/tsconfig.json
2022-08-11 12:07:33 +08:00

23 lines
421 B
JSON
Executable File

{
"compilerOptions": {
"allowJs": true,
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "ES2018",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"*": [
"node_modules/*",
"src/types/*"
]
}
},
"include": [
"src/**/*"
]
}