mirror of
https://github.com/tedkulp/vidgrab
synced 2026-03-05 13:20:27 -05:00
44 lines
915 B
JSON
44 lines
915 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"jsx": "preserve",
|
|
"strict": true,
|
|
"pretty": true,
|
|
"noImplicitAny": true,
|
|
"alwaysStrict": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"outDir": ".next",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"es2017",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"./typings"
|
|
],
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"./pages/**/*",
|
|
"./src/**/*",
|
|
"./ui/**/*",
|
|
"types.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |