BOSS/tsconfig.json
William Oldham fec123d838
Some checks are pending
Build and Publish Docker Image / build-publish (push) Waiting to run
chore; use tsup for building
2025-01-09 17:35:49 +00:00

26 lines
451 B
JSON

{
"compilerOptions": {
"strict": true,
"sourceMap": true,
"resolveJsonModule": true,
"module": "ES2022",
"esModuleInterop": true,
"moduleResolution": "bundler",
"baseUrl": "src",
"outDir": "dist",
"allowJs": true,
"target": "es2022",
"noEmitOnError": true,
"noImplicitAny": true,
"strictPropertyInitialization": true,
"verbatimModuleSyntax": true,
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src"
]
}