61192f91d9
Remove the GIF parsing code from this repo and instead add a dependency on gifuct-js.
38 lines
600 B
JSON
38 lines
600 B
JSON
{
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/**/tests/*",
|
|
"src/headless/dist/",
|
|
"src/website.js"
|
|
],
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"module": "esnext",
|
|
|
|
"lib": [
|
|
"ES2020",
|
|
"dom"
|
|
],
|
|
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
|
|
"rootDir": "./src",
|
|
"outDir": "./dist/types/",
|
|
"baseUrl": "./src/",
|
|
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true
|
|
}
|
|
}
|