underbbs/tsconfig.json

17 lines
367 B
JSON
Raw Normal View History

2024-04-27 16:50:27 +00:00
{
"compilerOptions": {
"target": "es5",
"lib": [ "es2022", "webworker", "dom" ],
"skipLibCheck": true,
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"]
}