You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
673 B
25 lines
673 B
2 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es5",
|
||
|
"lib": ["dom", "dom.iterable", "esnext"],
|
||
|
"baseUrl": ".",
|
||
|
"allowJs": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": false,
|
||
|
"strictNullChecks": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"noEmit": true,
|
||
|
"noUncheckedIndexedAccess": true,
|
||
|
"esModuleInterop": true,
|
||
|
"module": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "preserve",
|
||
|
"incremental": true,
|
||
|
"tsBuildInfoFile": ".tsbuildinfo"
|
||
|
},
|
||
|
"exclude": ["node_modules", "**/*.e2e.ts", "cypress"],
|
||
|
"include": ["blitz-env.d.ts", "**/*.ts", "**/*.tsx", "types"]
|
||
|
}
|