cs-2022-class-profile/tsconfig.json

44 lines
871 B
JSON
Raw Permalink Normal View History

2022-06-03 01:31:07 -04:00
{
"compilerOptions": {
2022-06-03 01:31:07 -04:00
"baseUrl": ".",
"target": "ES2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2022-06-03 01:31:07 -04:00
"allowJs": true,
"skipLibCheck": true,
2022-06-03 01:31:07 -04:00
"strict": false,
2022-06-03 01:31:07 -04:00
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
2022-06-03 01:31:07 -04:00
"module": "CommonJS",
2022-06-03 01:31:07 -04:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
2022-06-03 01:31:07 -04:00
"alwaysStrict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"paths": {
"@/components/*": [
"components/*"
]
},
2022-06-03 01:31:07 -04:00
"incremental": true
},
2022-06-03 01:31:07 -04:00
"include": [
"next-env.d.ts",
"types.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
2022-06-03 01:31:07 -04:00
}