21 lines
465 B
JSON
21 lines
465 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["ES2022", "DOM"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"target": "ESNext",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"noImplicitOverride": true,
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": ["src", "index.ts"],
|
|
"exclude": ["dist"]
|
|
}
|