mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 17:38:11 +03:00
40 lines
884 B
JSON
40 lines
884 B
JSON
// NOT A REAL TSCONFIG FILE
|
|
// THIS IS USED FOR VSCODE SO IT INTEGRATES NICELY
|
|
// IF YOU USE THIS TO BUILD, IT WILL ALSO BUILD THE TEST FILES!!
|
|
// SO, DONT DO THAT, USE TSCONFIG.BUILD.JSON FOR THE BUILD.
|
|
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"lib": [
|
|
"ES2019",
|
|
// this is absolutely stupid, and only needed because the AWS SDK
|
|
// DEPENDS ON A DOM TYPE???
|
|
// do people even run the aws sdk on the dom?
|
|
"DOM"
|
|
],
|
|
"declaration": true,
|
|
"strict": true,
|
|
"allowJs": false,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"outDir": "./js",
|
|
"baseUrl": "src",
|
|
"typeRoots": [
|
|
"@types",
|
|
"node_modules/@types",
|
|
]
|
|
},
|
|
"ts-node": {
|
|
"require": [
|
|
"tsconfig-paths/register"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/lib/jobs/inline-job-runner"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |