Files
ddns-agent/tsconfig.json
2025-11-16 13:32:35 +08:00

34 lines
664 B
JSON

{
"compilerOptions": {
"module": "NodeNext",
"target": "esnext",
"noImplicitAny": false,
"outDir": "./dist",
"sourceMap": false,
"allowJs": true,
"newLine": "LF",
"baseUrl": "./",
"typeRoots": [
"node_modules/@types",
],
"declaration": false,
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleResolution": "NodeNext",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"paths": {
"@/*": [
"src/*"
],
"@agent/*": [
"agent/*"
],
}
},
"include": [
"src/**/*.ts",
"agent/**/*.ts",
]
}