21 lines
480 B
JSON
21 lines
480 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./"
|
||
|
|
},
|
||
|
|
"exclude": ["node_modules", "dist", "**/dist"]
|
||
|
|
}
|