scripts/tsconfig.json

14 lines
412 B
JSON

{
"compilerOptions": {
"target": "es2020",
"strict": true,
"moduleResolution": "Node",
"strictNullChecks": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true
},
"include": ["src/**/*", "./node_modules/@types/node/index.d.ts"] // https://github.com/parcel-bundler/parcel/issues/8275#issuecomment-1173048866
}