24 lines
608 B
JSON
24 lines
608 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2024",
|
||
|
|
"lib": ["ES2024", "DOM"],
|
||
|
|
"module": "CommonJS",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src",
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"incremental": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["dist", "node_modules", "**/*.test.ts", "**/*.spec.ts"]
|
||
|
|
}
|