2024-06-09 07:22:05 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleDetection": "force",
|
2024-07-05 13:22:31 +00:00
|
|
|
"outDir": "dist",
|
2024-06-09 07:22:05 +00:00
|
|
|
|
|
|
|
/* Bundler mode */
|
2024-07-05 13:22:31 +00:00
|
|
|
"moduleResolution": "Bundler",
|
2024-06-09 07:22:05 +00:00
|
|
|
"verbatimModuleSyntax": true,
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
2024-07-05 13:22:31 +00:00
|
|
|
"baseUrl": "./src"
|
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts"]
|
2024-06-09 07:22:05 +00:00
|
|
|
}
|