18 lines
443 B
JSON
18 lines
443 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"lib": ["ES2024", "DOM", "DOM.Iterable"],
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"]
|
||
|
|
}
|