www-new/tsconfig.json

41 lines
825 B
JSON
Raw Normal View History

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