Picsur/tsconfig.base.json
2022-02-24 22:56:27 +01:00

24 lines
601 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"strict": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"removeComments": true,
"isolatedModules": true,
"incremental": true
}
}