This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/tsconfig.json

22 lines
486 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es2020",
"lib": ["es2020", "dom"],
"allowJs": true,
"checkJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "types"
},
"files": ["src/main.js", "src/platform/web/Platform.js"],
"disabledCompilerOptions": {
"noEmit": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true
}
}