Files
ddns-agent/tsconfig.json

37 lines
703 B
JSON

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