library/tsconfig.json

40 lines
1.1 KiB
JSON
Raw Permalink Normal View History

2021-10-30 19:44:32 -04:00
{
"compilerOptions": {
/* Basic Options */
"incremental": true,
"target": "ES6",
"module": "CommonJS",
2021-10-30 19:44:32 -04:00
"moduleResolution": "node",
2021-11-13 20:41:05 -05:00
"lib": ["dom", "dom.iterable", "esnext"],
2021-10-30 19:44:32 -04:00
"sourceMap": true,
"outDir": "./dist",
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
/* Strict Type-Checking Options */
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true
},
2021-11-13 20:41:05 -05:00
"include": ["next-env.d.ts", "types.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
2021-10-30 19:44:32 -04:00
}