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