typescript-nodejs-starter/tsconfig.json

24 lines
514 B
JSON

{
"compilerOptions": {
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"preserveWatchOutput": true,
"noEmit": true,
"module": "NodeNext",
"target": "ES2021",
"moduleResolution": "NodeNext",
"sourceMap": true,
"outDir": "dist",
"rootDir": ".",
"paths": {
"#root/*": [
"./src/*"
]
}
},
"include": [
"src/**/*",
"index.ts"
]
}