underbbs/tsconfig.json

15 lines
299 B
JSON
Raw Normal View History

2024-04-27 16:50:27 +00:00
{
"compilerOptions": {
2024-04-27 22:39:53 +00:00
"target": "ES2022",
2024-04-27 16:50:27 +00:00
"module": "preserve",
"moduleResolution": "bundler",
"noImplicitAny": true,
"strict": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
"outDir": "./src"
},
"include": [ "./ts/*.ts"]
}