fp/services/capture/tsconfig.json

32 lines
804 B
JSON
Raw Normal View History

2024-07-10 02:34:23 +00:00
{
"compilerOptions": {
2024-07-14 05:20:35 +00:00
// Base Options recommended for all projects
2024-07-23 02:59:41 +00:00
"allowImportingTsExtensions": true,
"noEmit": true, // tsup does the emissions
2024-07-14 05:20:35 +00:00
"esModuleInterop": true,
"skipLibCheck": true,
2024-07-28 00:42:09 +00:00
"target": "ESNext",
2024-07-14 05:20:35 +00:00
"allowJs": true,
2024-07-23 02:59:41 +00:00
"moduleResolution": "Bundler",
2024-07-14 05:20:35 +00:00
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
// Enable strict type checking so you can catch bugs early
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Transpile our TypeScript code to JavaScript
2024-07-23 02:59:41 +00:00
"module": "ESNext",
2024-07-14 05:20:35 +00:00
"outDir": "dist",
"lib": [
2024-07-28 00:42:09 +00:00
"ESNext"
2024-07-14 05:20:35 +00:00
]
2024-07-10 02:34:23 +00:00
},
2024-07-14 05:20:35 +00:00
// Include the necessary files for your project
"include": [
2024-07-28 00:42:09 +00:00
"src/**/*.ts"
2024-07-14 05:20:35 +00:00
],
"exclude": [
"node_modules"
]
}