typescript-nodejs-starter/tsconfig.json

24 lines
514 B
JSON
Raw Normal View History

2023-11-01 17:47:10 +00:00
{
"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"
]
}