22 lines
508 B
JSON
22 lines
508 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["dom", "esNext"],
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
}
|