23 lines
477 B
JSON
23 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"module": "ES2022",
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"ES2022"
|
|
]
|
|
}
|