esm-logging/tsconfig.json
Rodney, Tiara d27f6c65c1
init: working state
compiler + test suite are fine. logging module started, I'd say about 50%
complete.
2025-04-25 16:12:52 +02:00

19 lines
455 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "commonjs",
"strict": true,
"sourceMap": false,
"esModuleInterop": true,
"resolveJsonModule": false,
"allowJs": false,
"declaration": true,
"declarationMap": true,
"outDir": "build/production",
"baseUrl": "./",
"paths": { "*": ["node/modules/*"] }
},
"include": [
"src/**/*.ts"
]
}