Files
no-twitter-bot/tsconfig.json
2025-02-19 10:12:52 -05:00

24 lines
412 B
JSON

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