33 lines
784 B
JSON
33 lines
784 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
// Base Options recommended for all projects
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"target": "es2022",
|
||
|
"allowJs": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"moduleDetection": "force",
|
||
|
"isolatedModules": true,
|
||
|
// Enable strict type checking so you can catch bugs early
|
||
|
"strict": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"noImplicitOverride": true,
|
||
|
"declaration": true,
|
||
|
"declarationMap": true,
|
||
|
"sourceMap": true,
|
||
|
// Transpile our TypeScript code to JavaScript
|
||
|
"module": "NodeNext",
|
||
|
"outDir": "./dist",
|
||
|
"lib": [
|
||
|
"es2022"
|
||
|
],
|
||
|
"rootDir": "src"
|
||
|
},
|
||
|
// Include the necessary files for your project
|
||
|
"include": [
|
||
|
"src/**/*.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|